diff options
author | Harvey Harrison <[email protected]> | 2018-06-14 22:56:03 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2018-06-14 22:56:03 -0700 |
commit | 103508356dd2d39ba789f120645819c4885824da (patch) | |
tree | 3808ab4de88dd3411de6630a7564ef8bce40a553 /src/javax/media/j3d/GroupRetained.java | |
parent | 1878b8b9ba23f9eb52c638c1308bdf89e654541c (diff) |
j3dcore: remove useless updatelocaltoVworld method
Only calls itself on all child nodes, no callers anywhere else.
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src/javax/media/j3d/GroupRetained.java')
-rw-r--r-- | src/javax/media/j3d/GroupRetained.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/javax/media/j3d/GroupRetained.java b/src/javax/media/j3d/GroupRetained.java index 84a6bc6..826a989 100644 --- a/src/javax/media/j3d/GroupRetained.java +++ b/src/javax/media/j3d/GroupRetained.java @@ -2128,17 +2128,6 @@ synchronized void setAltAppScope() { (TargetsInterface)parentSwitchLink; } - - @Override - synchronized void updateLocalToVworld() { - // For each children call ..... - for (int i=children.size()-1; i>=0; i--) { - NodeRetained child = children.get(i); - if(child != null) - child.updateLocalToVworld(); - } - } - @Override void setNodeData(SetLiveState s) { super.setNodeData(s); |