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) {
431431 Spatial child = children .remove (index );
432432 if (child != null ) {
433433 child .setParent (null );
434- logger .log (Level .FINE , "{0}: Child removed." , this . toString () );
434+ logger .log (Level .FINE , "{0}: Child removed." , this );
435435
436436 // since a child with a bound was detached;
437437 // our own bound will probably change.
@@ -461,7 +461,7 @@ public void detachAllChildren() {
461461 for (int i = children .size () - 1 ; i >= 0 ; i --) {
462462 detachChildAt (i );
463463 }
464- logger .log (Level .FINE , "{0}: All children removed." , this . toString () );
464+ logger .log (Level .FINE , "{0}: All children removed." , this );
465465 }
466466
467467 /**
You can’t perform that action at this time.
0 commit comments