diff options
author | Harvey Harrison <[email protected]> | 2012-10-15 23:49:08 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2012-10-15 23:50:31 -0700 |
commit | d7fb6a7bcfbd2d5ac452abdcdd31fb4d71441c70 (patch) | |
tree | 566fdbf1325861a2ae50a215dc7c9961b223d434 /src/java/com/jogamp/common/util/IntIntHashMap.java | |
parent | 33ffe6769081401741813507ab01faa5ede80eae (diff) |
gluegen: generics annotations for various ArrayList/List use
- Use the copy constructor rather than ArrayList.clone()
- constrain listsEqual so the compiler will warn about comparing lists of different types
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src/java/com/jogamp/common/util/IntIntHashMap.java')
-rw-r--r-- | src/java/com/jogamp/common/util/IntIntHashMap.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/common/util/IntIntHashMap.java b/src/java/com/jogamp/common/util/IntIntHashMap.java index 487914b..5146d44 100644 --- a/src/java/com/jogamp/common/util/IntIntHashMap.java +++ b/src/java/com/jogamp/common/util/IntIntHashMap.java @@ -152,7 +152,7 @@ public class /*name*/IntIntHashMap/*name*/ implements Cloneable, Iterable { for(int i=table.length-1; i>=0; i--) { // single linked list -> ArrayList - final ArrayList<Entry> entries = new ArrayList(); + final ArrayList<Entry> entries = new ArrayList<Entry>(); Entry se = table[i]; while(null != se) { entries.add(se); |