summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/util
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2014-07-07 07:36:37 -0700
committerHarvey Harrison <[email protected]>2014-07-07 07:41:55 -0700
commit37f76d17cdf90a8dded8beba99651b19a8795c54 (patch)
tree1eb5f200ce53c1c143ed0dc9f1ef926bd1156d59 /src/java/com/jogamp/common/util
parent908822aa64c03ec4e8ca9fd3202f740c3e844bbd (diff)
gluegen: relax private variable access to package-private for members accessed from inner class
Otherwise the compiler has to fill in a wrapping access function for the inner class to call, which is less efficient.
Diffstat (limited to 'src/java/com/jogamp/common/util')
-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 e61b59f..954b379 100644
--- a/src/java/com/jogamp/common/util/IntIntHashMap.java
+++ b/src/java/com/jogamp/common/util/IntIntHashMap.java
@@ -451,7 +451,7 @@ public class /*name*/IntIntHashMap/*name*/ implements Cloneable,
public final /*key*/int/*key*/ key;
public /*value*/int/*value*/ value;
- private Entry next;
+ Entry next;
Entry(final /*key*/int/*key*/ k, final /*value*/int/*value*/ v, final Entry n) {
key = k;