remove redundant code

This commit is contained in:
Ben Fry
2022-06-19 16:04:25 -04:00
parent 6de9e5aa21
commit 139af9fbf8

View File

@@ -1137,10 +1137,8 @@ public class JavaBuild {
// Send a "build finished" event to the build listeners for this project.
p.fireBuildFinished(e);
String out = new String(outb.toByteArray());
String err = new String(errb.toByteArray());
System.out.println(out);
System.err.println(err);
System.out.println(outb);
System.err.println(errb);
}
return false;
}