summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2012-06-27 00:29:45 -0700
committerHarvey Harrison <[email protected]>2012-06-27 00:29:45 -0700
commitdad1666bd5da4254541adb0cd4362be332227d3f (patch)
tree1f1e0276fb9e022040b1a8762b2eea47093cb4dd
parent43930a1a60e4efbea6f44ea6b3b3871512972271 (diff)
j3dcore: annotate list of branchGroups in Locale
Signed-off-by: Harvey Harrison <[email protected]>
-rw-r--r--src/classes/share/javax/media/j3d/Locale.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/classes/share/javax/media/j3d/Locale.java b/src/classes/share/javax/media/j3d/Locale.java
index 9bae012..4187455 100644
--- a/src/classes/share/javax/media/j3d/Locale.java
+++ b/src/classes/share/javax/media/j3d/Locale.java
@@ -65,10 +65,10 @@ public class Locale extends Object {
*/
HiResCoord hiRes;
- /**
- * List of BranchGroup objects included in this Locale
- */
- Vector branchGroups = new Vector();
+/**
+ * List of BranchGroup objects included in this Locale
+ */
+Vector<BranchGroup> branchGroups = new Vector<BranchGroup>();
// locale's identifier
String nodeId = null;