You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by cu...@apache.org on 2007/06/15 23:47:37 UTC

svn commit: r547803 - in /lucene/hadoop/trunk: CHANGES.txt src/test/findbugsExcludeFile.xml

Author: cutting
Date: Fri Jun 15 14:47:36 2007
New Revision: 547803

URL: http://svn.apache.org/viewvc?view=rev&rev=547803
Log:
HADOOP-1417.  Disable a few FindBugs checks that generate a lot of spurious warnings.  Contributed by Nigel.

Modified:
    lucene/hadoop/trunk/CHANGES.txt
    lucene/hadoop/trunk/src/test/findbugsExcludeFile.xml

Modified: lucene/hadoop/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/CHANGES.txt?view=diff&rev=547803&r1=547802&r2=547803
==============================================================================
--- lucene/hadoop/trunk/CHANGES.txt (original)
+++ lucene/hadoop/trunk/CHANGES.txt Fri Jun 15 14:47:36 2007
@@ -144,6 +144,9 @@
      rack-aware.  Attempts are now made to keep replicas on more
      racks.  (Hairong Kuang via cutting)
 
+ 46. HADOOP-1417.  Disable a few FindBugs checks that generate a lot
+     of spurious warnings.  (Nigel Daley via cutting)
+
 
 Release 0.13.0 - 2007-06-08
 

Modified: lucene/hadoop/trunk/src/test/findbugsExcludeFile.xml
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/src/test/findbugsExcludeFile.xml?view=diff&rev=547803&r1=547802&r2=547803
==============================================================================
--- lucene/hadoop/trunk/src/test/findbugsExcludeFile.xml (original)
+++ lucene/hadoop/trunk/src/test/findbugsExcludeFile.xml Fri Jun 15 14:47:36 2007
@@ -2,4 +2,21 @@
      <Match>
        <Package name="org.apache.hadoop.record.compiler.generated" />
      </Match>
+     <Match>
+       <Bug pattern="EI_EXPOSE_REP" />
+     </Match>
+     <Match>
+       <Bug pattern="EI_EXPOSE_REP2" />
+     </Match>
+     <Match>
+       <Bug pattern="SE_COMPARATOR_SHOULD_BE_SERIALIZABLE" />
+     </Match>
+     <Match>
+       <Class name="~.*_jsp" />
+       <Bug pattern="DLS_DEAD_LOCAL_STORE" />
+     </Match>
+     <Match>
+       <Field name="_jspx_dependants" />
+       <Bug pattern="UWF_UNWRITTEN_FIELD" />
+     </Match>
 </FindBugsFilter>