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

Method ClassLoader

classpath/java/lang/ClassLoader.java:28–34  ·  view source on GitHub ↗
(ClassLoader parent)

Source from the content-addressed store, hash-verified

26 private Map<String, Package> packages;
27
28 protected ClassLoader(ClassLoader parent) {
29 if (parent == null) {
30 this.parent = getSystemClassLoader();
31 } else {
32 this.parent = parent;
33 }
34 }
35
36 protected ClassLoader() {
37 this(getSystemClassLoader());

Callers

nothing calls this directly

Calls 1

getSystemClassLoaderMethod · 0.95

Tested by

no test coverage detected