Skip to content

Commit cbb91a8

Browse files
committed
Fix: stray print statement in coverage tool
Signed-off-by: Sam Gammon <[email protected]>
1 parent 0bb4c35 commit cbb91a8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tools/src/com.oracle.truffle.tools.coverage/src/com/oracle/truffle/tools/coverage/impl/CoverageInstrument.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ protected static PrintStream chooseOutputStream(Env env, String absoluteOutputPa
136136
try {
137137
if (absoluteOutputPath != null) {
138138
final File file = new File(absoluteOutputPath);
139-
new PrintStream(env.out()).println("Printing output to " + file.getAbsolutePath());
140139
return new PrintStream(new FileOutputStream(file));
141140
} else {
142141
return new PrintStream(env.out());

0 commit comments

Comments
 (0)