Untitled
Anonymous
plain_text
09/26/2023 2:36 AM
368 B
16
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...