You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/07/31 17:53:05 UTC

svn commit: r1508943 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java

Author: ggregory
Date: Wed Jul 31 15:53:05 2013
New Revision: 1508943

URL: http://svn.apache.org/r1508943
Log:
Use ch instead of c as a character var name.

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java?rev=1508943&r1=1508942&r2=1508943&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java Wed Jul 31 15:53:05 2013
@@ -140,7 +140,7 @@ abstract class Lexer implements Closeabl
     boolean readEndOfLine(int ch) throws IOException {
         // check if we have \r\n...
         if (ch == CR && in.lookAhead() == LF) {
-            // note: does not change c outside of this method!
+            // note: does not change ch outside of this method!
             ch = in.read();
         }
         return ch == LF || ch == CR;