Fixed bug duplicating messages

This commit is contained in:
delvh
2020-04-18 10:34:03 +02:00
parent 09f7f5482e
commit 00edd59f97
3 changed files with 9 additions and 9 deletions

View File

@@ -231,7 +231,7 @@ public class Client implements Closeable {
private void writeObject(Object obj) throws IOException {
checkOnline();
logger.fine("Sending object " + obj);
logger.fine("Sending " + obj);
SerializationUtils.writeBytesWithLength(obj, socket.getOutputStream());
}