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 2008/04/02 16:23:13 UTC

svn commit: r643917 - /commons/sandbox/functor/trunk/fb-excludes.xml

Author: sebb
Date: Wed Apr  2 07:23:07 2008
New Revision: 643917

URL: http://svn.apache.org/viewvc?rev=643917&view=rev
Log:
Initial stab at Findbugs excludes for non-serialiable complaints that aren't a problem

Added:
    commons/sandbox/functor/trunk/fb-excludes.xml   (with props)

Added: commons/sandbox/functor/trunk/fb-excludes.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/fb-excludes.xml?rev=643917&view=auto
==============================================================================
--- commons/sandbox/functor/trunk/fb-excludes.xml (added)
+++ commons/sandbox/functor/trunk/fb-excludes.xml Wed Apr  2 07:23:07 2008
@@ -0,0 +1,15 @@
+<FindBugsFilter>
+     <!-- 
+      Exclude classes which include fields based on non-serializable interfaces,
+      as their implementations are (generally) supposed to be serializable.
+      -->
+	 <Match classregex="org\.apache\.commons\.functor\.adapter\..*">
+	 	<BugCode name="Se"/>
+	 </Match>
+	 <Match classregex="org\.apache\.commons\.functor\.core\.composite\..*">
+	 	<BugCode name="Se"/>
+	 </Match>
+	 <Match classregex="org\.apache\.commons\.functor\.core\.comparator\.IsWithinRange">
+	 	<BugCode name="Se"/>
+	 </Match>
+</FindBugsFilter>

Propchange: commons/sandbox/functor/trunk/fb-excludes.xml
------------------------------------------------------------------------------
    svn:eol-style = native