Adapt checkstyle configuration to allow missing method javadoc for the time being.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1371948 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-08-11 13:23:17 +00:00
parent 5122c2adf2
commit 320336eb78
1 changed files with 1 additions and 0 deletions

View File

@ -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>