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/06 15:24:19 UTC

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

Author: tellison
Date: Tue Oct  6 13:24:18 2009
New Revision: 822264

URL: http://svn.apache.org/viewvc?rev=822264&view=rev
Log:
Ignore warnings on unused trace methods.

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

Modified: harmony/enhanced/classlib/trunk/modules/beans/make/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/beans/make/findbugs-exclude-filter.xml?rev=822264&r1=822263&r2=822264&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/beans/make/findbugs-exclude-filter.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/beans/make/findbugs-exclude-filter.xml Tue Oct  6 13:24:18 2009
@@ -31,4 +31,14 @@
 		<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE" />
 	</Match>
 
+	<!-- These are trace methods that are unused here. -->
+	<Match>
+		<Class name="org.apache.harmony.beans.Command" />
+		<Or>
+			<Method name="pr" />
+			<Method name="prn" />
+		</Or>
+		<Bug pattern="DLS_DEAD_LOCAL_STORE" />
+	</Match>
+
 </FindBugsFilter>