mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
even more compiler logging
This commit is contained in:
@@ -67,7 +67,13 @@ public class JavacRunner {
|
||||
System.arraycopy(args, 2, newArgs, 0, newArgs.length);
|
||||
}
|
||||
expandClasspath(newArgs);
|
||||
mainMethod.invoke(null, new Object[] {newArgs});
|
||||
try {
|
||||
mainMethod.invoke(null, new Object[] {newArgs});
|
||||
}
|
||||
catch (Throwable e) {
|
||||
System.err.print(e.getMessage());
|
||||
e.printStackTrace(System.err);
|
||||
}
|
||||
}
|
||||
|
||||
private static void addFilesToCompile(Vector arguments, String path) throws IOException {
|
||||
|
||||
Reference in New Issue
Block a user