提交 635f5871 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 ebd773c8
...@@ -728,12 +728,12 @@ public class BuildBase { ...@@ -728,12 +728,12 @@ public class BuildBase {
int result; int result;
PrintStream old = System.err; PrintStream old = System.err;
try { try {
Class< ? > clazz = Class.forName("com.sun.tools.javac.Main");
if (quiet) { if (quiet) {
System.setErr(filter(System.err, new String[] { System.setErr(filter(System.err, new String[] {
"Note:" "Note:"
})); }));
} }
Class< ? > clazz = Class.forName("com.sun.tools.javac.Main");
Method compile = clazz.getMethod("compile", new Class< ? >[] { String[].class }); Method compile = clazz.getMethod("compile", new Class< ? >[] { String[].class });
Object instance = clazz.newInstance(); Object instance = clazz.newInstance();
result = (Integer) invoke(compile, instance, new Object[] { array }); result = (Integer) invoke(compile, instance, new Object[] { array });
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论