You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2010/10/03 20:20:20 UTC

svn commit: r1004020 - /directory/buildtools/trunk/checkstyle/src/main/resources/directory-checks.xml

Author: seelmann
Date: Sun Oct  3 18:20:19 2010
New Revision: 1004020

URL: http://svn.apache.org/viewvc?rev=1004020&view=rev
Log:
Allow declaration of unchecked exceptions

Modified:
    directory/buildtools/trunk/checkstyle/src/main/resources/directory-checks.xml

Modified: directory/buildtools/trunk/checkstyle/src/main/resources/directory-checks.xml
URL: http://svn.apache.org/viewvc/directory/buildtools/trunk/checkstyle/src/main/resources/directory-checks.xml?rev=1004020&r1=1004019&r2=1004020&view=diff
==============================================================================
--- directory/buildtools/trunk/checkstyle/src/main/resources/directory-checks.xml (original)
+++ directory/buildtools/trunk/checkstyle/src/main/resources/directory-checks.xml Sun Oct  3 18:20:19 2010
@@ -181,7 +181,9 @@
         <module name="InnerAssignment"/>
         <!-- module name="MagicNumber"/ -->
         <module name="MissingSwitchDefault"/>
-        <module name="RedundantThrows"/>
+        <module name="RedundantThrows">
+            <property name="allowUnchecked" value="true"/>
+        </module>
         <module name="SimplifyBooleanExpression"/>
         <module name="SimplifyBooleanReturn"/>