Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
markusranda committed Nov 12, 2019
1 parent 166511b commit 140104e
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,11 @@ public class ConnectionManager implements Runnable {

private final String mapFileName;
private ServerSocket server;
long pid = 100;
private boolean firstTimeRunning = true;
Gson gson = new Gson();
private Gson gson = new Gson();

public ConnectionManager(int port, String mapFileName) throws IOException {
this.server = new ServerSocket(port, 1, null);
this.mapFileName = mapFileName;
//gson = new GsonBuilder().registerTypeAdapter(TCPMessage.class, new InterfaceA)
}

@Override
Expand Down

0 comments on commit 140104e

Please sign in to comment.