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

Forgot to remove System.out.println of the packet class
This commit is contained in:
Louis 2022-06-10 22:02:37 +02:00 committed by GitHub
commit d2dc584112
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -202,7 +202,6 @@ public class ClientConnection extends Thread {
}
public synchronized void sendPacket(PacketOut packet) throws IOException {
System.out.println(packet.getClass());
if (channel.writePacket(packet)) {
setLastPacketTimestamp(System.currentTimeMillis());
}