Apply suggestion to src/main/java/com/eu/habbo/networking/Server.java

This commit is contained in:
xjoao 2020-05-24 16:33:48 -04:00
parent c9d2f46535
commit b0aa1996e3

View File

@ -67,7 +67,7 @@ public abstract class Server {
try { try {
this.workerGroup.shutdownGracefully(0, 0, TimeUnit.MILLISECONDS).sync(); this.workerGroup.shutdownGracefully(0, 0, TimeUnit.MILLISECONDS).sync();
this.bossGroup.shutdownGracefully(0, 0, TimeUnit.MILLISECONDS).sync(); this.bossGroup.shutdownGracefully(0, 0, TimeUnit.MILLISECONDS).sync();
} catch catch (InterruptedException e) { } catch(InterruptedException e) {
LOGGER.error("Exception during {} shutdown... HARD STOP", this.name, e); LOGGER.error("Exception during {} shutdown... HARD STOP", this.name, e);
} }
LOGGER.info("GameServer Stopped!"); LOGGER.info("GameServer Stopped!");