Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/scene/Node.java
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ public Spatial detachChildAt(int index) {
Spatial child = children.remove(index);
if (child != null) {
child.setParent(null);
logger.log(Level.FINE, "{0}: Child removed.", this.toString());
logger.log(Level.FINE, "{0}: Child removed.", this);

// since a child with a bound was detached;
// our own bound will probably change.
Expand Down Expand Up @@ -461,7 +461,7 @@ public void detachAllChildren() {
for (int i = children.size() - 1; i >= 0; i--) {
detachChildAt(i);
}
logger.log(Level.FINE, "{0}: All children removed.", this.toString());
logger.log(Level.FINE, "{0}: All children removed.", this);
}

/**
Expand Down