1
0
mirror of https://github.com/LOOHP/Limbo.git synced 2026-06-07 13:31:43 +00:00

Merge pull request #47 from LouissXI/remove-print-packet-class

Forgot to remove System.out.println of the packet class
This commit is contained in:
LOOHP
2022-06-11 07:23:39 +08:00
committed by GitHub
@@ -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());
} }