Skip to content

Commit 55eff9d

Browse files
committed
Use ch instead of c as a character var name.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1508943 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7909a7c commit 55eff9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void trimTrailingSpaces(final StringBuilder buffer) {
140140
boolean readEndOfLine(int ch) throws IOException {
141141
// check if we have \r\n...
142142
if (ch == CR && in.lookAhead() == LF) {
143-
// note: does not change c outside of this method!
143+
// note: does not change ch outside of this method!
144144
ch = in.read();
145145
}
146146
return ch == LF || ch == CR;

0 commit comments

Comments
 (0)