From 2a6a6bb1df175847a7bb84bd741ce3632d6590f6 Mon Sep 17 00:00:00 2001
From: Sven Gothel <sgothel@jausoft.com>
Date: Thu, 31 Oct 2013 07:36:34 +0100
Subject: Bug 754 - JarUtil: Add method to generate resource URI from class's
 Jar URI and resource name (Remove Ubuntu fonts from jogl-all.jar, provide it
 separately to reduce footprint for the masses.)

---
 src/java/com/jogamp/common/util/cache/TempJarCache.java | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'src/java/com/jogamp/common/util/cache')

diff --git a/src/java/com/jogamp/common/util/cache/TempJarCache.java b/src/java/com/jogamp/common/util/cache/TempJarCache.java
index c127314..99bb272 100644
--- a/src/java/com/jogamp/common/util/cache/TempJarCache.java
+++ b/src/java/com/jogamp/common/util/cache/TempJarCache.java
@@ -397,6 +397,7 @@ public class TempJarCache {
         return null;
     } */
 
+    /** Similar to {@link ClassLoader#getResource(String)}. */
     public synchronized static final String findResource(String name) {
         checkInitialized();
         final File f = new File(tmpFileCache.getTempDir(), name);
@@ -406,6 +407,7 @@ public class TempJarCache {
         return null;
     }
 
+    /** Similar to {@link ClassLoader#getResource(String)}. */
     public synchronized static final URI getResource(String name) throws URISyntaxException {
         checkInitialized();
         final File f = new File(tmpFileCache.getTempDir(), name);
-- 
cgit v1.2.3