Commit a1ac934b authored by Vedran Pavic's avatar Vedran Pavic Committed by Andy Wilkinson

Ignore special variable related JVM output in CommandLineInvoker

Closes gh-5883
parent 9e4eb037
...@@ -144,7 +144,9 @@ public final class CommandLineInvoker { ...@@ -144,7 +144,9 @@ public final class CommandLineInvoker {
List<String> lines = new ArrayList<String>(); List<String> lines = new ArrayList<String>();
try { try {
while ((line = reader.readLine()) != null) { while ((line = reader.readLine()) != null) {
lines.add(line); if (!line.startsWith("Picked up ")) {
lines.add(line);
}
} }
} }
catch (IOException ex) { catch (IOException ex) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment