Skip to content

Commit

Permalink
Uses system line separator.
Browse files Browse the repository at this point in the history
closes #73
  • Loading branch information
NathanSweet committed May 30, 2017
1 parent ecb417e commit 3b01522
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public void writePlain (String text, boolean split, int indent, int wrapColumn)
}

public void writeLineBreak (String data) throws IOException {
if (data == null) data = "\n";
if (data == null) data = System.getProperty("line.separator");
whitespace = true;
indentation = true;
column = 0;
Expand Down

0 comments on commit 3b01522

Please sign in to comment.