You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2008/02/03 17:10:28 UTC

svn commit: r618012 - /commons/proper/jxpath/trunk/checkstyle.xml

Author: mbenson
Date: Sun Feb  3 08:10:27 2008
New Revision: 618012

URL: http://svn.apache.org/viewvc?rev=618012&view=rev
Log:
reduce some checkstyle stuff

Modified:
    commons/proper/jxpath/trunk/checkstyle.xml

Modified: commons/proper/jxpath/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/jxpath/trunk/checkstyle.xml?rev=618012&r1=618011&r2=618012&view=diff
==============================================================================
--- commons/proper/jxpath/trunk/checkstyle.xml (original)
+++ commons/proper/jxpath/trunk/checkstyle.xml Sun Feb  3 08:10:27 2008
@@ -105,7 +105,10 @@
           <!-- Checks for whitespace                               -->
           <!-- See http://checkstyle.sf.net/config_whitespace.html -->
           <module name="EmptyForIteratorPad"/>
-          <module name="NoWhitespaceAfter"/>
+          <module name="NoWhitespaceAfter">
+            <!-- not ARRAY_INIT -->
+            <property name="tokens" value="BNOT,DEC,DOT,INC,LNOT,UNARY_MINUS,UNARY_PLUS" />
+          </module>
           <module name="NoWhitespaceBefore"/>
           <module name="OperatorWrap"/>
           <module name="TabCharacter"/>
@@ -116,8 +119,9 @@
           <!-- Modifier Checks                                    -->
           <!-- See http://checkstyle.sf.net/config_modifiers.html -->
           <module name="ModifierOrder"/>
-          <module name="RedundantModifier"/>
-  
+          <module name="RedundantModifier">
+            <property name="tokens" value="METHOD_DEF" />
+          </module>
   
           <!-- Checks for blocks. You know, those {}'s         -->
           <!-- See http://checkstyle.sf.net/config_blocks.html -->
@@ -148,7 +152,6 @@
           <!-- Checks for class design                         -->
           <!-- See http://checkstyle.sf.net/config_design.html -->
           <module name="FinalClass"/>
-          <module name="HideUtilityClassConstructor"/>
           <module name="InterfaceIsType"/>
           <module name="VisibilityModifier"/>