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:
parent
5a0894f9e0
commit
d5cc0d8a7c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue