Убраны Development логи

This commit is contained in:
RoyceDa
2026-02-25 18:38:15 +02:00
parent d6890c95e4
commit 95638d683a
2 changed files with 1 additions and 3 deletions

View File

@@ -149,8 +149,7 @@ public class Server extends WebSocketServer {
threadLocker.releaseLock(packet, executor.getClass()); threadLocker.releaseLock(packet, executor.getClass());
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); client.disconnect(ServerFailures.BAD_PACKET);
//client.disconnect(ServerFailures.BAD_PACKET);
} }
} }

View File

@@ -40,7 +40,6 @@ public class PacketFactory {
packet.read(stream); packet.read(stream);
return packet; return packet;
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace();
throw new ProtocolException("Failed to create packet with id " + packetId); throw new ProtocolException("Failed to create packet with id " + packetId);
} }
} }