diff --git a/src-server/Server.java b/src-server/Server.java index a9a1121..615b1b0 100644 --- a/src-server/Server.java +++ b/src-server/Server.java @@ -14,7 +14,6 @@ import java.util.*; public class Server implements Runnable { private String version = "v1.0"; private ArrayList clients = new ArrayList(); - private ServerData data = null; private ServerSocket sSocket = null; private Thread thread = null; private int clientCount = 0; @@ -64,8 +63,6 @@ public class Server implements Runnable { thread = new Thread(this); thread.start(); } - - data = new ServerData(this); } // Stop the server thread and all other threads