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/05 13:16:53 UTC

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

Author: tellison
Date: Mon Oct  5 11:16:53 2009
New Revision: 821759

URL: http://svn.apache.org/viewvc?rev=821759&view=rev
Log:
Exclude another false positive FindBugs warning.

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=821759&r1=821758&r2=821759&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 Mon Oct  5 11:16:53 2009
@@ -69,4 +69,11 @@
 		<Bug pattern="DC_DOUBLECHECK" />
 	</Match>
 
+	<!-- Allow this dead store, we are trying to force a potential exception -->
+	<Match>
+		<Class name="org.apache.harmony.security.provider.crypto.SHA1withDSA_SignatureImpl" />
+		<Method name="checkSignature" />
+		<Bug pattern="DLS_DEAD_LOCAL_STORE" />
+	</Match>
+
 </FindBugsFilter>