Forgot to remove System.out.println of the packet class

This commit is contained in:
Louis
2022-06-10 22:01:18 +02:00
committed by GitHub
parent 0f10f91191
commit 8511f5e897
@@ -202,7 +202,6 @@ public class ClientConnection extends Thread {
} }
public synchronized void sendPacket(PacketOut packet) throws IOException { public synchronized void sendPacket(PacketOut packet) throws IOException {
System.out.println(packet.getClass());
if (channel.writePacket(packet)) { if (channel.writePacket(packet)) {
setLastPacketTimestamp(System.currentTimeMillis()); setLastPacketTimestamp(System.currentTimeMillis());
} }