Skip to content

Commit

Permalink
remove debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Pilzinsel64 committed May 17, 2023
1 parent 8999222 commit 29b6b5a
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public void fromBytes(ByteBuf buf) {
for (int i = 0; i < count; i++) {
String name = ByteBufUtils.readUTF8String(buf);
waystones.add(name);
System.out.println("FromBytes: " + name);
}
}

Expand All @@ -33,7 +32,6 @@ public void toBytes(ByteBuf buf) {
buf.writeInt(waystones.size());
for (String name : waystones) {
ByteBufUtils.writeUTF8String(buf, name);
System.out.println("ToBytes: " + name);
}
}

Expand Down

0 comments on commit 29b6b5a

Please sign in to comment.