diff options
author | Sven Gothel <[email protected]> | 2013-10-01 10:30:08 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-01 10:30:08 +0200 |
commit | 1a8d2c627dbab5234aea72a458c00b6bba28add0 (patch) | |
tree | 90390174812b2d743725e7339ee449bc09642f77 /src/junit | |
parent | 506ae5e9fd258db7bfe737999e769477a32643a7 (diff) |
Fix Bug 844: Cannot ctor URI w/ scheme alone, use string-based concatenation native URI root and jar file.
Diffstat (limited to 'src/junit')
-rw-r--r-- | src/junit/com/jogamp/common/util/TestTempJarCache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/junit/com/jogamp/common/util/TestTempJarCache.java b/src/junit/com/jogamp/common/util/TestTempJarCache.java index e357a2e..29fe4c5 100644 --- a/src/junit/com/jogamp/common/util/TestTempJarCache.java +++ b/src/junit/com/jogamp/common/util/TestTempJarCache.java @@ -203,7 +203,7 @@ public class TestTempJarCache extends JunitTracer { final ClassLoader cl = getClass().getClassLoader(); URI jarUriRoot = JarUtil.getJarSubURI(TempJarCache.class.getName(), cl); - jarUriRoot = IOUtil.getDirname(jarUriRoot); + jarUriRoot = IOUtil.getURIDirname(jarUriRoot); URI nativeJarURI = JarUtil.getJarFileURI(jarUriRoot, nativeJarName); |