diff options
author | Glenn Adams <gadams@apache.org> | 2012-03-03 00:43:50 +0000 |
---|---|---|
committer | Glenn Adams <gadams@apache.org> | 2012-03-03 00:43:50 +0000 |
commit | 619148a39389c9cc46426c0621645adeaed8a433 (patch) | |
tree | c4aface6ffa85394e772cc01a9d726b32b471535 | |
parent | 2ed4c2e0346fe366c48ab12acc987f30c956a784 (diff) | |
download | xmlgraphics-fop-619148a39389c9cc46426c0621645adeaed8a433.tar.gz xmlgraphics-fop-619148a39389c9cc46426c0621645adeaed8a433.zip |
change allowLineBreaks to false on NoWhitespaceAfter for BNOT, DEC, INC, LNOT, UNARY_MINUS, UNARY_PLUS, but allow for ARRAY_INIT and DOT
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1296535 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | checkstyle-5.5.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/checkstyle-5.5.xml b/checkstyle-5.5.xml index a3acdb549..4c00faf67 100644 --- a/checkstyle-5.5.xml +++ b/checkstyle-5.5.xml @@ -176,8 +176,12 @@ <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... --> <module name="NoWhitespaceAfter"> - <property name="allowLineBreaks" value="true"/> <!-- changing to false produces 183 new errors --> - <property name="tokens" value="ARRAY_INIT,BNOT,DEC,DOT,INC,LNOT,UNARY_MINUS,UNARY_PLUS"/> + <property name="allowLineBreaks" value="false"/> + <property name="tokens" value="BNOT,DEC,INC,LNOT,UNARY_MINUS,UNARY_PLUS"/> + </module> + <module name="NoWhitespaceAfter"> + <property name="allowLineBreaks" value="true"/> + <property name="tokens" value="ARRAY_INIT,DOT"/> </module> <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... --> |