File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change 184184 </properties >
185185
186186 <build >
187- <defaultGoal >clean package apache-rat:check japicmp:cmp checkstyle:check spotbugs:check javadoc:javadoc</defaultGoal >
187+ <defaultGoal >clean package apache-rat:check japicmp:cmp checkstyle:check spotbugs:check pmd:check javadoc:javadoc</defaultGoal >
188188 <pluginManagement >
189189 <plugins >
190190 <plugin >
Original file line number Diff line number Diff line change @@ -142,8 +142,8 @@ char[] lookAhead(final int n) throws IOException {
142142 @ Override
143143 public int read () throws IOException {
144144 final int current = super .read ();
145- if (( current == CR || current == LF && lastChar != CR ) ||
146- ( current == END_OF_STREAM && lastChar != CR && lastChar != LF && lastChar != END_OF_STREAM ) ) {
145+ if (current == CR || current == LF && lastChar != CR ||
146+ current == END_OF_STREAM && lastChar != CR && lastChar != LF && lastChar != END_OF_STREAM ) {
147147 eolCounter ++;
148148 }
149149 lastChar = current ;
You can’t perform that action at this time.
0 commit comments