diff options
author | Harvey Harrison <[email protected]> | 2014-07-07 07:25:19 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2014-07-07 07:25:19 -0700 |
commit | e774abd1a18ee53caa2c550718179f0567d45323 (patch) | |
tree | 0779f634d9d84111e677696ec2719402b8e3f549 /src/java/com/jogamp/common/util/IntIntHashMap.java | |
parent | 95dad44d1e825382bc5895f76c21f24bc5776501 (diff) |
gluegen: remove unused imports, unneeded semicolons, add missing @Override annotations
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 4cb2329..e61b59f 100644 --- a/src/java/com/jogamp/common/util/IntIntHashMap.java +++ b/src/java/com/jogamp/common/util/IntIntHashMap.java @@ -75,7 +75,7 @@ public class /*name*/IntIntHashMap/*name*/ implements Cloneable, private static final Constructor</*name*/IntIntHashMap/*name*/.Entry> entryConstructor; private static final Method equalsMethod; - static class EntryCM { EntryCM() { c = null; m1 = null; } Constructor<Entry> c; Method m1; }; + static class EntryCM { EntryCM() { c = null; m1 = null; } Constructor<Entry> c; Method m1; } static { final Class<?> valueClazz = /*value*/int/*value*/.class; |