Untitled
unknown
plain_text
2 years ago
275 B
8
Indexable
ClassLoader cl = getShadowClassLoader();
Class<?> mc = cl.loadClass("lombok.core.Main");
try {
mc.getMethod("main", new Class[] { String[].class }).invoke(null, new Object[] { args });
} catch (InvocationTargetException e) {
throw e.getCause();
} Editor is loading...