In-line comment.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397915 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-10-13 17:45:31 +00:00
parent 8c3aaee61a
commit 0f8cc2228c
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ abstract class Lexer {
boolean readEndOfLine(int c) throws IOException {
// check if we have \r\n...
if (c == CR && in.lookAhead() == LF) {
// note: does not change c outside of this method !!
// note: does not change c outside of this method!
c = in.read();
}
return c == LF || c == CR;