(String path)
| 56 | } |
| 57 | |
| 58 | public URL getResource(String path) { |
| 59 | try { |
| 60 | return new URL("jar:file:" + jarFile.getAbsolutePath() + "!/" + path); |
| 61 | } catch(MalformedURLException e) { |
| 62 | throw new RuntimeException(e); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | |
| 67 | } |
nothing calls this directly
no test coverage detected