Corrected shutdown message

This commit is contained in:
Kai S. K. Engelbart 2020-02-07 10:02:40 +01:00
parent bacc171ccd
commit fa3c1829a9
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class Startup {
server.start();
server.getSocketProcessor().registerSocketIdListener(ConnectionManager.getInstance());
System.out.println("Press any key to stop the server...");
System.out.println("Press the return key to stop the server...");
System.in.read();
System.exit(0);
}