File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121import static org .apache .commons .csv .Constants .CR ;
2222import static org .apache .commons .csv .Constants .CRLF ;
2323import static org .apache .commons .csv .Constants .DOUBLE_QUOTE ;
24- import static org .apache .commons .csv .Constants .ESCAPE ;
24+ import static org .apache .commons .csv .Constants .BACKSLASH ;
2525import static org .apache .commons .csv .Constants .LF ;
2626import static org .apache .commons .csv .Constants .TAB ;
2727
@@ -119,7 +119,7 @@ public class CSVFormat implements Serializable {
119119 newBuilder ()
120120 .withDelimiter (TAB )
121121 .withQuoteChar (null )
122- .withEscape (ESCAPE )
122+ .withEscape (BACKSLASH )
123123 .withIgnoreEmptyLines (false )
124124 .withRecordSeparator (LF )
125125 .build ();
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ final class Constants {
3434
3535 static final char CR = '\r' ;
3636 static final char DOUBLE_QUOTE = '"' ;
37- static final char ESCAPE = '\\' ;
37+ static final char BACKSLASH = '\\' ;
3838 static final char FF = '\f' ;
3939 static final char LF = '\n' ;
4040 static final char SP = ' ' ;
You can’t perform that action at this time.
0 commit comments