summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2012-05-19 01:34:20 -0700
committerHarvey Harrison <[email protected]>2012-05-19 01:41:00 -0700
commit77999da7efd29a0c7d7a713d0b0b65ec01d69555 (patch)
treec6b4126dd315ae61748780ffb6d4069df80110f6 /src
parentc29725f319d1ce1042eb85ff17f51ffeaf15bc70 (diff)
j3dcore: remove unused activeViews list from Screen3D
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/classes/share/javax/media/j3d/Screen3D.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/classes/share/javax/media/j3d/Screen3D.java b/src/classes/share/javax/media/j3d/Screen3D.java
index 4ae6817..5427bc5 100644
--- a/src/classes/share/javax/media/j3d/Screen3D.java
+++ b/src/classes/share/javax/media/j3d/Screen3D.java
@@ -172,24 +172,9 @@ static Hashtable<GraphicsDevice, Renderer> deviceRendererMap = new Hashtable<Gra
// A count of the number of canvases associated with this screen
int canvasCount = 0;
- // A count of the number of active View associated with this screen
- UnorderList activeViews = new UnorderList(1, View.class);
-
// A list of Canvas3D Objects that refer to this
private final ArrayList<Canvas3D> users = new ArrayList<Canvas3D>();
- void addActiveView(View v) {
- activeViews.addUnique(v);
- }
-
- void removeActiveView(View v) {
- activeViews.remove(v);
- }
-
- boolean activeViewEmpty() {
- return activeViews.isEmpty();
- }
-
// Add a user to the list of users
synchronized void removeUser(Canvas3D c) {
users.remove(c);