Ignore special variable related JVM output in CommandLineInvoker
Closes gh-5883
This commit is contained in:
parent
9e4eb037f6
commit
a1ac934bee
|
@ -144,7 +144,9 @@ public final class CommandLineInvoker {
|
|||
List<String> lines = new ArrayList<String>();
|
||||
try {
|
||||
while ((line = reader.readLine()) != null) {
|
||||
lines.add(line);
|
||||
if (!line.startsWith("Picked up ")) {
|
||||
lines.add(line);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (IOException ex) {
|
||||
|
|
Loading…
Reference in New Issue