You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2018/08/21 20:08:44 UTC

commons-csv git commit: CR and LF are already statically imported

Repository: commons-csv
Updated Branches:
  refs/heads/master 7694e8f99 -> e5b2413ca


CR and LF are already statically imported


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/e5b2413c
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/e5b2413c
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/e5b2413c

Branch: refs/heads/master
Commit: e5b2413ca760a5d75f8a7030d5dad6c221ed4fa8
Parents: 7694e8f
Author: Benedikt Ritter <br...@apache.org>
Authored: Tue Aug 21 22:08:33 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Tue Aug 21 22:08:33 2018 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/csv/Lexer.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/e5b2413c/src/main/java/org/apache/commons/csv/Lexer.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/csv/Lexer.java b/src/main/java/org/apache/commons/csv/Lexer.java
index 76fa81e..b29fc14 100644
--- a/src/main/java/org/apache/commons/csv/Lexer.java
+++ b/src/main/java/org/apache/commons/csv/Lexer.java
@@ -38,8 +38,8 @@ import java.io.IOException;
  */
 final class Lexer implements Closeable {
 
-    private static final String CR_STRING = Character.toString(Constants.CR);
-    private static final String LF_STRING = Character.toString(Constants.LF);
+    private static final String CR_STRING = Character.toString(CR);
+    private static final String LF_STRING = Character.toString(LF);
 
     /**
      * Constant char to use for disabling comments, escapes and encapsulation. The value -2 is used because it