You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2015/11/03 21:27:26 UTC

svn commit: r1712394 - /commons/sandbox/beanutils2/trunk/config/checkstyle.xml

Author: britter
Date: Tue Nov  3 20:27:25 2015
New Revision: 1712394

URL: http://svn.apache.org/viewvc?rev=1712394&view=rev
Log:
Only check protected and public methods for missing JavaDoc comments

Modified:
    commons/sandbox/beanutils2/trunk/config/checkstyle.xml

Modified: commons/sandbox/beanutils2/trunk/config/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/config/checkstyle.xml?rev=1712394&r1=1712393&r2=1712394&view=diff
==============================================================================
--- commons/sandbox/beanutils2/trunk/config/checkstyle.xml (original)
+++ commons/sandbox/beanutils2/trunk/config/checkstyle.xml Tue Nov  3 20:27:25 2015
@@ -46,6 +46,7 @@ under the License.
         <module name="NeedBraces"/>
         <module name="JavadocMethod">
             <property name="allowUndeclaredRTE" value="true"/>
+            <property name="scope" value="protected"/>
         </module>
     </module>