MCPcopy Create free account
hub / github.com/GraxCode/zelixkiller / loadClass

Method loadClass

src/me/lpk/analysis/Sandbox.java:391–400  ·  view source on GitHub ↗
(String name, boolean resolve)

Source from the content-addressed store, hash-verified

389 }
390
391 @Override
392 public Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException {
393 if (loaded.containsKey(name)) {
394 return loaded.get(name);
395 }
396 if (local.containsKey(name)) {
397 return get(name, local.remove(name));
398 }
399 return super.loadClass(name, resolve);
400 }
401
402 }
403

Callers

nothing calls this directly

Calls 1

getMethod · 0.95

Tested by

no test coverage detected