Removed unused import statements and class variables. Removed non error print statements.

This commit is contained in:
Calum
2017-05-25 10:20:39 +12:00
parent 331e0fc6ab
commit a6d9c66fc9
19 changed files with 254 additions and 475 deletions
@@ -28,7 +28,6 @@ class StreamingServerSocket {
}
void start(){
ServerThread.serverLog("Listening For Connections",0);
try {
client = socket.accept();
} catch (IOException e) {
@@ -39,7 +38,6 @@ class StreamingServerSocket {
}
else{
isServerStarted = true;
ServerThread.serverLog("client connected from " + client.socket().getInetAddress(),0);
}
}