Skip to content

Commit e5b2413

Browse files
committed
CR and LF are already statically imported
1 parent 7694e8f commit e5b2413

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
*/
3939
final class Lexer implements Closeable {
4040

41-
private static final String CR_STRING = Character.toString(Constants.CR);
42-
private static final String LF_STRING = Character.toString(Constants.LF);
41+
private static final String CR_STRING = Character.toString(CR);
42+
private static final String LF_STRING = Character.toString(LF);
4343

4444
/**
4545
* Constant char to use for disabling comments, escapes and encapsulation. The value -2 is used because it

0 commit comments

Comments
 (0)