From 0f8cc2228ca860514360cf6eae237fb8a6a98456 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Sat, 13 Oct 2012 17:45:31 +0000 Subject: [PATCH] In-line comment. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397915 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/csv/Lexer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/csv/Lexer.java b/src/main/java/org/apache/commons/csv/Lexer.java index 3f1eb694..e1f59817 100644 --- a/src/main/java/org/apache/commons/csv/Lexer.java +++ b/src/main/java/org/apache/commons/csv/Lexer.java @@ -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;