Ignore special variable related JVM output in CommandLineInvoker

Closes gh-5883
This commit is contained in:
Vedran Pavic 2016-05-06 16:12:37 +02:00 committed by Andy Wilkinson
parent 9e4eb037f6
commit a1ac934bee

View File

@ -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) {