summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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);