Skip to content

Commit 8d9690a

Browse files
ulleniusstefanbirkner
authored andcommitted
Remove commented out code
1 parent cfec8c7 commit 8d9690a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/junit/tests/runner/TextRunnerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void execTest(String testClass, boolean success) throws Exception {
3232
Process p = Runtime.getRuntime().exec(cmd);
3333
InputStream i = p.getInputStream();
3434
while ((i.read()) != -1)
35-
; //System.out.write(b);
35+
;
3636
assertTrue((p.waitFor() == 0) == success);
3737
if (success) {
3838
assertTrue(p.exitValue() == 0);

0 commit comments

Comments
 (0)