Skip to content

Commit 139af9f

Browse files
committed
remove redundant code
1 parent 6de9e5a commit 139af9f

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

java/src/processing/mode/java/JavaBuild.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1137,10 +1137,8 @@ protected boolean buildWindowsLauncher(File buildFile, String target) {
11371137
// Send a "build finished" event to the build listeners for this project.
11381138
p.fireBuildFinished(e);
11391139

1140-
String out = new String(outb.toByteArray());
1141-
String err = new String(errb.toByteArray());
1142-
System.out.println(out);
1143-
System.err.println(err);
1140+
System.out.println(outb);
1141+
System.err.println(errb);
11441142
}
11451143
return false;
11461144
}

0 commit comments

Comments
 (0)