Reformat and clean up "net" package

This commit is contained in:
P0nk
2021-09-09 23:26:02 +02:00
parent 69f4580637
commit 6be6ea9927
235 changed files with 3556 additions and 3398 deletions

View File

@@ -60,10 +60,7 @@ public final class PacketProcessor {
return null;
}
PacketHandler handler = handlers[packetId];
if (handler != null) {
return handler;
}
return null;
return handler;
}
public void registerHandler(RecvOpcode code, PacketHandler handler) {