You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/04/14 01:43:00 UTC

svn commit: r1326018 - /commons/proper/pool/trunk/checkstyle.xml

Author: sebb
Date: Fri Apr 13 23:43:00 2012
New Revision: 1326018

URL: http://svn.apache.org/viewvc?rev=1326018&view=rev
Log:
Some checks have been renamed and changed parent

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

Modified: commons/proper/pool/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/checkstyle.xml?rev=1326018&r1=1326017&r2=1326018&view=diff
==============================================================================
--- commons/proper/pool/trunk/checkstyle.xml (original)
+++ commons/proper/pool/trunk/checkstyle.xml Fri Apr 13 23:43:00 2012
@@ -27,13 +27,16 @@
 
   <property name="localeLanguage" value="en"/>
 
+  <!-- Verify that EVERY source file has the appropriate license -->
+  <module name="Header">
+    <property name="headerFile" value="${checkstyle.header.file}"/>
+  </module>
+
+  <!-- No tabs allowed! -->
+  <module name="FileTabCharacter"/>
+    
   <module name="TreeWalker">
    
-    <!-- Verify that EVERY source file has the appropriate license -->
-    <module name="Header">
-      <property name="headerFile" value="${checkstyle.header.file}"/>
-    </module>
-
     <!-- Operator must be at end of wrapped line -->
     <module name="OperatorWrap">
       <property name="option" value="eol"/>
@@ -54,9 +57,6 @@
     <!-- Require field javadoc -->
     <module name="JavadocVariable"/>
         
-    <!-- No tabs allowed! -->
-    <module name="TabCharacter"/>
-    
     <!-- No public fields -->
     <module name="VisibilityModifier">
        <property name="protectedAllowed" value="true"/>
@@ -76,7 +76,7 @@
   </module>
   
   <!-- Require package javadoc -->
-  <module name="PackageHtml"/>
+  <module name="JavadocPackage"/>
 
   <!-- Setup special comments to suppress specific checks from source files -->
   <module name="SuppressionCommentFilter">