Skip to content

Commit c6c762a

Browse files
committed
Checkstyle: put trailing || on previous line (indicates more to come)
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1485805 13f79535-47bb-0310-9956-ffa450edef68
1 parent e5d7b21 commit c6c762a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ boolean isCommentStart(final int c) {
188188
}
189189

190190
private boolean isMetaChar(final int c) {
191-
return c == delimiter
192-
|| c == escape
193-
|| c == quoteChar
194-
|| c == commmentStart
195-
;
191+
return c == delimiter ||
192+
c == escape ||
193+
c == quoteChar ||
194+
c == commmentStart
195+
;
196196
}
197197
}

0 commit comments

Comments
 (0)