summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/util/IntIntHashMap.java
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2014-07-07 07:25:19 -0700
committerHarvey Harrison <[email protected]>2014-07-07 07:25:19 -0700
commite774abd1a18ee53caa2c550718179f0567d45323 (patch)
tree0779f634d9d84111e677696ec2719402b8e3f549 /src/java/com/jogamp/common/util/IntIntHashMap.java
parent95dad44d1e825382bc5895f76c21f24bc5776501 (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.java2
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;