Author: tn
Date: Sat Aug 11 13:23:17 2012
New Revision: 1371948
URL: http://svn.apache.org/viewvc?rev=1371948&view=rev
Log:
Adapt checkstyle configuration to allow missing method javadoc for the time
being.
Modified:
commons/proper/collections/trunk/checkstyle.xml
Modified: commons/proper/collections/trunk/checkstyle.xml
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/checkstyle.xml?rev=1371948&r1=1371947&r2=1371948&view=diff
==============================================================================
--- commons/proper/collections/trunk/checkstyle.xml (original)
+++ commons/proper/collections/trunk/checkstyle.xml Sat Aug 11 13:23:17 2012
@@ -50,6 +50,7 @@
<!-- Require method javadocs, allow undeclared RTE -->
<module name="JavadocMethod">
<property name="allowUndeclaredRTE" value="true" />
+ <property name="allowMissingJavadoc" value="true" />
<property name="scope" value="protected" />
</module>