Author: peterreilly
Date: Tue Aug 21 10:19:50 2007
New Revision: 568200

URL: http://svn.apache.org/viewvc?rev=568200&view=rev
Log:
allow redundant throws, do not allow illegalimport

Modified:
    ant/core/trunk/src/etc/checkstyle/checkstyle-config

Modified: ant/core/trunk/src/etc/checkstyle/checkstyle-config
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/src/etc/checkstyle/checkstyle-config?rev=568200&r1=568199&r2=568200&view=diff
==============================================================================
--- ant/core/trunk/src/etc/checkstyle/checkstyle-config (original)
+++ ant/core/trunk/src/etc/checkstyle/checkstyle-config Tue Aug 21 10:19:50 2007
@@ -34,7 +34,7 @@
 
     <!-- Import conventions -->
     <module name="AvoidStarImport"/>
-    <!-- <module name="IllegalImport"/> -->
+    <module name="IllegalImport"/>
     <module name="RedundantImport"/>
     <module name="UnusedImports"/>
 
@@ -83,9 +83,11 @@
     <module name="InnerAssignment"/>
     <module name="MagicNumber"/>
     <module name="MissingSwitchDefault"/>
+    <!-- Allow redundant throw declarations for doc purposes 
     <module name="RedundantThrows">
       <property name="allowUnchecked" value="true"/>
     </module>
+         -->
     <module name="SimplifyBooleanExpression"/>
     <module name="SimplifyBooleanReturn"/>
 
@@ -113,4 +115,4 @@
     <property name="onCommentFormat" value="CheckStyle\:([\w\|]+) *ON"/>
     <property name="checkFormat" value="$1"/>
   </module>
-</module>
\ No newline at end of file
+</module>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to