You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/07/15 18:11:32 UTC

svn commit: r1361726 - /commons/proper/collections/trunk/checkstyle.xml

Author: tn
Date: Sun Jul 15 16:11:32 2012
New Revision: 1361726

URL: http://svn.apache.org/viewvc?rev=1361726&view=rev
Log:
Ignore javadoc for private methods in checkstyle config.

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=1361726&r1=1361725&r2=1361726&view=diff
==============================================================================
--- commons/proper/collections/trunk/checkstyle.xml (original)
+++ commons/proper/collections/trunk/checkstyle.xml Sun Jul 15 16:11:32 2012
@@ -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 -->