Fix constant name.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397530 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-10-12 12:00:35 +00:00
parent 5b6b1fa33c
commit a5cd9dc1c5
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ import java.io.StringWriter;
*/
public class CSVFormat implements Serializable {
private static final String CR = "\n";
private static final String LF = "\n";
private static final char ESCAPE = '\\';
@ -137,7 +137,7 @@ public class CSVFormat implements Serializable {
PRISTINE
.withDelimiter(TAB)
.withEscape(ESCAPE)
.withLineSeparator(CR);
.withLineSeparator(LF);
/**
* Creates a customized CSV format.