From 37f76d17cdf90a8dded8beba99651b19a8795c54 Mon Sep 17 00:00:00 2001 From: Harvey Harrison Date: Mon, 7 Jul 2014 07:36:37 -0700 Subject: 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. --- src/java/com/jogamp/common/os/DynamicLibraryBundle.java | 2 +- src/java/com/jogamp/common/util/IntIntHashMap.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/java/com/jogamp') diff --git a/src/java/com/jogamp/common/os/DynamicLibraryBundle.java b/src/java/com/jogamp/common/os/DynamicLibraryBundle.java index ec76154..0f5ea8f 100644 --- a/src/java/com/jogamp/common/os/DynamicLibraryBundle.java +++ b/src/java/com/jogamp/common/os/DynamicLibraryBundle.java @@ -251,7 +251,7 @@ public class DynamicLibraryBundle implements DynamicLookupHelper { return null; } - private final void loadLibraries() { + final void loadLibraries() { int i; toolLibLoadedNumber = 0; final ClassLoader cl = info.getClass().getClassLoader(); 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; -- cgit v1.2.3