Replace magic String with constant from Constants.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1495912 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-06-24 03:17:29 +00:00
parent 5a0894f9e0
commit d5cc0d8a7c
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ public class CSVParser implements Iterable<CSVRecord> {
if (sb == null) { // first comment for this record
sb = new StringBuilder();
} else {
sb.append("\n");
sb.append(Constants.LF);
}
sb.append(reusableToken.content);
reusableToken.type = TOKEN; // Read another token