Untitled

 avatar
unknown
plain_text
2 years ago
275 B
5
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...