Skip to content

Commit a5cd9dc

Browse files
committed
Fix constant name.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397530 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5b6b1fa commit a5cd9dc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*/
3030
public class CSVFormat implements Serializable {
3131

32-
private static final String CR = "\n";
32+
private static final String LF = "\n";
3333

3434
private static final char ESCAPE = '\\';
3535

@@ -137,7 +137,7 @@ public class CSVFormat implements Serializable {
137137
PRISTINE
138138
.withDelimiter(TAB)
139139
.withEscape(ESCAPE)
140-
.withLineSeparator(CR);
140+
.withLineSeparator(LF);
141141

142142
/**
143143
* Creates a customized CSV format.

0 commit comments

Comments
 (0)