Skip to content

Commit b0c657d

Browse files
authored
Deleted debug lines
Forgot to delete them
1 parent 7d2b575 commit b0c657d

File tree

1 file changed

+1
-3
lines changed
  • engine/modules/camera/src/main/java/com/codingame/gameengine/module/camera

1 file changed

+1
-3
lines changed

engine/modules/camera/src/main/java/com/codingame/gameengine/module/camera/CameraModule.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ private void sendFrameData() {
6262
Object[] empty = {null, null, null, null};
6363
if (!newRegistration.isEmpty()) {
6464
data[0] = new HashMap<>(newRegistration);
65-
System.out.printf("added size : %d\n", newRegistration.size());
6665
newRegistration.clear();
6766
}
6867
if (cameraOffset != previousOffset) {
@@ -104,7 +103,6 @@ public void addTrackedEntity(Entity<?> entity) {
104103
if (!registered.getOrDefault(id, false)) {
105104
newRegistration.put(id, true);
106105
registered.put(id, true);
107-
System.out.printf("registered %d\n", id);
108106
}
109107
} else {
110108
throw new RuntimeException("The entity given can't be track because it's not the child of " +
@@ -162,4 +160,4 @@ public void setContainer(Entity<?> container, int viewerSizeX, int viewerSizeY)
162160
}
163161
}
164162

165-
}
163+
}

0 commit comments

Comments
 (0)