remove logs
This commit is contained in:
parent
c50a2fb251
commit
46565951e8
1 changed files with 0 additions and 2 deletions
|
@ -54,9 +54,7 @@ public class ConnectionListener {
|
||||||
try {
|
try {
|
||||||
server = new ServerSocket(TCP_PORT);
|
server = new ServerSocket(TCP_PORT);
|
||||||
while (!shouldStop) {
|
while (!shouldStop) {
|
||||||
System.out.println("Accepting...");
|
|
||||||
Socket clientSocket = server.accept();
|
Socket clientSocket = server.accept();
|
||||||
System.out.println("New connection from " + clientSocket.getRemoteSocketAddress());
|
|
||||||
callback.onNewConnection(clientSocket);
|
callback.onNewConnection(clientSocket);
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
Loading…
Reference in a new issue