We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f81b6d commit aadef6eCopy full SHA for aadef6e
1 file changed
source/communicator/Communicator.java
@@ -1,6 +1,7 @@
1
package communicator;
2
3
import commons.CommonRails;
4
+import database.N21Store;
5
import exceptions.ExceptionHandler;
6
7
import java.io.BufferedReader;
@@ -73,7 +74,8 @@ public void run()
73
74
{
75
try
76
- database.N21Store.createCommunicatorTables();
77
+ N21Store.createCommunicatorTables();
78
+
79
serverSocket = new ServerSocket(PORT, 64, InetAddress.getByName(HOST));
80
CommonRails.printSystemComponent(this, this.hashCode(),
81
". Communicator listening on port " + PORT + " .");
0 commit comments