Skip to content

Commit

Permalink
Ignore special variable related JVM output in CommandLineInvoker
Browse files Browse the repository at this point in the history
  • Loading branch information
vpavic authored and wilkinsona committed May 13, 2016
1 parent 9e4eb03 commit a1ac934
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ private List<String> getLines(StringBuffer buffer) {
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) {
Expand Down

0 comments on commit a1ac934

Please sign in to comment.