Ignore javadoc for private methods in checkstyle config.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1361726 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-07-15 16:11:32 +00:00
parent 846c7e2733
commit bb3cc3de88
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="scope" value="protected" />
</module>
<!-- Require hash code override when equals is -->