You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2015/08/25 19:11:23 UTC

svn commit: r1697742 - /commons/proper/bcel/trunk/checkstyle.xml

Author: sebb
Date: Tue Aug 25 17:11:23 2015
New Revision: 1697742

URL: http://svn.apache.org/r1697742
Log:
Don't complain about deprecated mutable fields - the compiler will warn about usage

Modified:
    commons/proper/bcel/trunk/checkstyle.xml

Modified: commons/proper/bcel/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/checkstyle.xml?rev=1697742&r1=1697741&r2=1697742&view=diff
==============================================================================
--- commons/proper/bcel/trunk/checkstyle.xml (original)
+++ commons/proper/bcel/trunk/checkstyle.xml Tue Aug 25 17:11:23 2015
@@ -157,8 +157,10 @@ limitations under the License.
     <!--module name="FinalClass"/-->
     <!--module name="HideUtilityClassConstructor"/-->
     <module name="InterfaceIsType"/>
+
     <module name="VisibilityModifier">
-        <property name="protectedAllowed" value="true"/>
+        <property name="ignoreAnnotationCanonicalNames" value="java.lang.Deprecated"/>
+        <property name="protectedAllowed" value="false"/>
         <property name="packageAllowed" value="true"/>
     </module>