Skip to content

Commit

Permalink
Fix for issue mojohaus#20 - slight repair to get to compile on jdk 6
Browse files Browse the repository at this point in the history
  • Loading branch information
rosslamont committed Aug 10, 2017
1 parent 7049405 commit b579e88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/codehaus/mojo/xml/ValidateMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@ private void appendMessage(StringBuffer messageBuffer,ValidationErrorHandler.Err
messageBuffer.append(error.getType().toString());
messageBuffer.append(": " );
messageBuffer.append(e.getMessage());
messageBuffer.append(System.lineSeparator());
String lineSep = System.getProperty("line.separator");
messageBuffer.append(lineSep);

}
}

0 comments on commit b579e88

Please sign in to comment.