MCPcopy Create free account
hub / github.com/ReadyTalk/avian / collectResources

Method collectResources

classpath/java/lang/ClassLoader.java:197–204  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

195 }
196
197 private Collection<URL> collectResources(String name) {
198 Collection<URL> urls = parent != null ? parent.collectResources(name) : new ArrayList<URL>(5);
199 URL url = findResource(name);
200 if (url != null) {
201 urls.add(url);
202 }
203 return urls;
204 }
205
206 protected String findLibrary(String name) {
207 return null;

Callers 1

getResourcesMethod · 0.95

Calls 2

findResourceMethod · 0.95
addMethod · 0.65

Tested by

no test coverage detected