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:
parent
5b6b1fa33c
commit
a5cd9dc1c5
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue