import java.lang.reflect.Method;
public class DebugLauncher {
public static void main(String[] args) throws Exception {
String realCp = System.getProperty("quantum.real.classpath");
if (realCp != null) {
System.setProperty("java.class.path", realCp);
}
Class<?> clazz = Class.forName("com.citigroup.get.quantum.server.Server");
Method m = clazz.getMethod("main", String[].class);
m.invoke(null, (Object) args);
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)