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/01 23:42:13 UTC

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

Author: tellison
Date: Thu Oct  1 21:42:13 2009
New Revision: 820810

URL: http://svn.apache.org/viewvc?rev=820810&view=rev
Log:
Make the bug filter a more specific "pattern" match rather than the broader "code" match.

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

Modified: harmony/enhanced/classlib/trunk/modules/sql/make/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/sql/make/findbugs-exclude-filter.xml?rev=820810&r1=820809&r2=820810&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/sql/make/findbugs-exclude-filter.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/sql/make/findbugs-exclude-filter.xml Thu Oct  1 21:42:13 2009
@@ -27,7 +27,7 @@
 	<!-- Spec requires it is called Date -->
 	<Match>
 		<Class name="java.sql.Date" />
-		<Bug code="Nm" />
+		<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS" />
 	</Match>
-</FindBugsFilter>
 
+</FindBugsFilter>