You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2009/10/02 20:59:44 UTC

svn commit: r821131 - /harmony/enhanced/classlib/trunk/modules/security/make/findbugs-exclude-filter.xml

Author: tellison
Date: Fri Oct  2 18:59:44 2009
New Revision: 821131

URL: http://svn.apache.org/viewvc?rev=821131&view=rev
Log:
More findBugs exclusion filter tweaks in security module.

Modified:
    harmony/enhanced/classlib/trunk/modules/security/make/findbugs-exclude-filter.xml

Modified: harmony/enhanced/classlib/trunk/modules/security/make/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/security/make/findbugs-exclude-filter.xml?rev=821131&r1=821130&r2=821131&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/security/make/findbugs-exclude-filter.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/security/make/findbugs-exclude-filter.xml Fri Oct  2 18:59:44 2009
@@ -47,13 +47,22 @@
 	-->
 	<Match>
 		<Class name="java.security.MessageDigest" />
-		<Method name="clone" />
 		<Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE" />
 	</Match>
 	<Match>
 		<Class name="java.security.Signature" />
-		<Method name="clone" />
 		<Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE" />
 	</Match>
+	<Match>
+		<Class name="java.security.Signature$SignatureImpl" />
+		<Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE" />
+	</Match>
+
+	<!-- A false positive warning for double check lock -->
+	<Match>
+		<Class name="java.security.Policy" />
+		<Method name="getAccessiblePolicy" />
+		<Bug pattern="DC_DOUBLECHECK" />
+	</Match>
 
 </FindBugsFilter>