We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0018f4 commit 662c8feCopy full SHA for 662c8fe
1 file changed
jme3-core/src/main/java/com/jme3/scene/Node.java
@@ -431,7 +431,7 @@ public Spatial detachChildAt(int index) {
431
Spatial child = children.remove(index);
432
if (child != null) {
433
child.setParent(null);
434
- logger.log(Level.FINE, "{0}: Child removed.", this.toString());
+ logger.log(Level.FINE, "{0}: Child removed.", this);
435
436
// since a child with a bound was detached;
437
// our own bound will probably change.
@@ -461,7 +461,7 @@ public void detachAllChildren() {
461
for (int i = children.size() - 1; i >= 0; i--) {
462
detachChildAt(i);
463
}
464
- logger.log(Level.FINE, "{0}: All children removed.", this.toString());
+ logger.log(Level.FINE, "{0}: All children removed.", this);
465
466
467
/**
0 commit comments