(String path)
| 181 | } |
| 182 | |
| 183 | public static InputStream getSystemResourceAsStream(String path) { |
| 184 | return getSystemClassLoader().getResourceAsStream(path); |
| 185 | } |
| 186 | |
| 187 | public static Enumeration<URL> getSystemResources(String name) throws IOException { |
| 188 | return getSystemClassLoader().getResources(name); |
nothing calls this directly
no test coverage detected