aboutsummaryrefslogtreecommitdiffstats
path: root/src/javax/media/j3d
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2018-06-14 22:56:03 -0700
committerHarvey Harrison <[email protected]>2018-06-14 22:56:03 -0700
commit103508356dd2d39ba789f120645819c4885824da (patch)
tree3808ab4de88dd3411de6630a7564ef8bce40a553 /src/javax/media/j3d
parent1878b8b9ba23f9eb52c638c1308bdf89e654541c (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')
-rw-r--r--src/javax/media/j3d/GroupRetained.java11
-rw-r--r--src/javax/media/j3d/NodeRetained.java3
2 files changed, 0 insertions, 14 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);
diff --git a/src/javax/media/j3d/NodeRetained.java b/src/javax/media/j3d/NodeRetained.java
index 83739da..662a730 100644
--- a/src/javax/media/j3d/NodeRetained.java
+++ b/src/javax/media/j3d/NodeRetained.java
@@ -624,9 +624,6 @@ NodeRetained getParent() {
void recombineAbove() {}
- synchronized void updateLocalToVworld() {}
-
-
@Override
void setLive(SetLiveState s) {
int oldrefCount = refCount;