(String path)
| 177 | } |
| 178 | |
| 179 | public static URL getSystemResource(String path) { |
| 180 | return getSystemClassLoader().getResource(path); |
| 181 | } |
| 182 | |
| 183 | public static InputStream getSystemResourceAsStream(String path) { |
| 184 | return getSystemClassLoader().getResourceAsStream(path); |
nothing calls this directly
no test coverage detected