ne pas regarder

This commit is contained in:
2025-03-12 13:18:27 +01:00
parent 0900113bb8
commit 3eec95e420
2 changed files with 2 additions and 2 deletions

View File

@@ -127,7 +127,7 @@ public class PacketPool {
if (Math.random() > PACKET_LOSS_PROBABILITY) if (Math.random() > PACKET_LOSS_PROBABILITY)
this.socket.sendPacket(packet, address); this.socket.sendPacket(packet, address);
} catch (InterruptedException | IOException e) { } catch (InterruptedException | IOException e) {
e.printStackTrace(); // e.printStackTrace();
} }
}).start(); }).start();

View File

@@ -152,7 +152,7 @@ public class Socket {
recievePacket(); recievePacket();
} }
} catch (IOException | ClassNotFoundException e) { } catch (IOException | ClassNotFoundException e) {
e.printStackTrace(); // e.printStackTrace();
} }
} }
} }