Reverting command line reporting: it breaks tests

This commit is contained in:
Andrey Breslav
2012-07-14 12:15:30 +04:00
parent 95b93322b3
commit 15d469156a
@@ -152,10 +152,10 @@ public abstract class CLICompiler<A extends CompilerArguments, C extends Compile
ExitCode rc = compiler.exec(System.out, args);
if (rc != OK) {
System.err.println("exec() finished with " + rc + " return code");
System.err.println("Command line arguments: ");
for (String arg : args) {
System.err.println(arg);
}
//System.err.println("Command line arguments: ");
//for (String arg : args) {
// System.err.println(arg);
//}
System.exit(rc.getCode());
}
}