1
0
mirror of https://github.com/apache/commons-csv.git synced 2025-02-16 15:07:07 +00:00

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
This commit is contained in:
Sebastian Bazley 2013-05-23 18:21:32 +00:00
parent e5d7b21456
commit c6c762ad9d

@ -188,10 +188,10 @@ abstract class Lexer {
}
private boolean isMetaChar(final int c) {
return c == delimiter
|| c == escape
|| c == quoteChar
|| c == commmentStart
;
return c == delimiter ||
c == escape ||
c == quoteChar ||
c == commmentStart
;
}
}