diff options
author | Mark Raynsford <[email protected]> | 2014-06-30 12:49:39 +0000 |
---|---|---|
committer | Mark Raynsford <[email protected]> | 2014-06-30 12:49:39 +0000 |
commit | 46faa59d439ef235d7691fc64d56eedc600ffa1a (patch) | |
tree | b699d48a2b19079761b966f5b64733da9c453a23 /src/java/com/jogamp/common/os | |
parent | 3901130f7fa4b3484a202f5db3a541f1edf9d6e8 (diff) |
Clean up native library loading and remove the ability to strip prefixes.
Bug: 1023
Bug: 1024
Diffstat (limited to 'src/java/com/jogamp/common/os')
-rw-r--r-- | src/java/com/jogamp/common/os/Platform.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/common/os/Platform.java b/src/java/com/jogamp/common/os/Platform.java index e410e81..fd68a3c 100644 --- a/src/java/com/jogamp/common/os/Platform.java +++ b/src/java/com/jogamp/common/os/Platform.java @@ -200,7 +200,7 @@ public class Platform extends PlatformPropsImpl { // load GluegenRT native library if(_USE_TEMP_JAR_CACHE[0] && TempJarCache.initSingleton()) { try { - JNILibLoaderBase.addNativeJarLibs(new Class<?>[] { Platform.class }, null, null ); + JNILibLoaderBase.addNativeJarLibs(new Class<?>[] { Platform.class }, null); } catch (Exception e0) { // IllegalArgumentException, IOException System.err.println("Catched "+e0.getClass().getSimpleName()+": "+e0.getMessage()+", while JNILibLoaderBase.addNativeJarLibs(..)"); |