|
@@ -431,7 +431,7 @@ public class Node extends Spatial {
|
|
Spatial child = children.remove(index);
|
|
Spatial child = children.remove(index);
|
|
if (child != null) {
|
|
if (child != null) {
|
|
child.setParent(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;
|
|
// since a child with a bound was detached;
|
|
// our own bound will probably change.
|
|
// our own bound will probably change.
|
|
@@ -461,7 +461,7 @@ public class Node extends Spatial {
|
|
for (int i = children.size() - 1; i >= 0; i--) {
|
|
for (int i = children.size() - 1; i >= 0; i--) {
|
|
detachChildAt(i);
|
|
detachChildAt(i);
|
|
}
|
|
}
|
|
- logger.log(Level.FINE, "{0}: All children removed.", this.toString());
|
|
|
|
|
|
+ logger.log(Level.FINE, "{0}: All children removed.", this);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|