File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
jme3-core/src/main/java/com/jme3/scene Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ public Spatial detachChildAt(int index) {
431
431
Spatial child = children .remove (index );
432
432
if (child != null ) {
433
433
child .setParent (null );
434
- logger .log (Level .FINE , "{0}: Child removed." , this . toString () );
434
+ logger .log (Level .FINE , "{0}: Child removed." , this );
435
435
436
436
// since a child with a bound was detached;
437
437
// our own bound will probably change.
@@ -461,7 +461,7 @@ public void detachAllChildren() {
461
461
for (int i = children .size () - 1 ; i >= 0 ; i --) {
462
462
detachChildAt (i );
463
463
}
464
- logger .log (Level .FINE , "{0}: All children removed." , this . toString () );
464
+ logger .log (Level .FINE , "{0}: All children removed." , this );
465
465
}
466
466
467
467
/**
You can’t perform that action at this time.
0 commit comments