You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-commits@hadoop.apache.org by co...@apache.org on 2010/12/08 05:51:42 UTC

svn commit: r1043301 - in /hadoop/hdfs/trunk: CHANGES.txt src/test/findbugsExcludeFile.xml

Author: cos
Date: Wed Dec  8 04:51:42 2010
New Revision: 1043301

URL: http://svn.apache.org/viewvc?rev=1043301&view=rev
Log:
HDFS-1532. Exclude Findbugs warning in FSImageFormat$Saver. Contributed by Todd Lipcon.

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

Modified: hadoop/hdfs/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hdfs/trunk/CHANGES.txt?rev=1043301&r1=1043300&r2=1043301&view=diff
==============================================================================
--- hadoop/hdfs/trunk/CHANGES.txt (original)
+++ hadoop/hdfs/trunk/CHANGES.txt Wed Dec  8 04:51:42 2010
@@ -428,6 +428,9 @@ Release 0.22.0 - Unreleased
 
     HDFS-1502. TestBlockRecovery triggers NPE in assert. (hairong via cos)
 
+    HDFS-1532. Exclude Findbugs warning in FSImageFormat$Saver. (Todd Lipcon
+    via cos)
+
 Release 0.21.1 - Unreleased
 
   IMPROVEMENTS

Modified: hadoop/hdfs/trunk/src/test/findbugsExcludeFile.xml
URL: http://svn.apache.org/viewvc/hadoop/hdfs/trunk/src/test/findbugsExcludeFile.xml?rev=1043301&r1=1043300&r2=1043301&view=diff
==============================================================================
--- hadoop/hdfs/trunk/src/test/findbugsExcludeFile.xml (original)
+++ hadoop/hdfs/trunk/src/test/findbugsExcludeFile.xml Wed Dec  8 04:51:42 2010
@@ -231,8 +231,8 @@
       wrapped streams, too.
      -->
      <Match>
-       <Class name="org.apache.hadoop.hdfs.server.namenode.FSImageFormat$Writer" />
-       <Method name="write" />
+       <Class name="org.apache.hadoop.hdfs.server.namenode.FSImageFormat$Saver" />
+       <Method name="save" />
        <Bug pattern="OS_OPEN_STREAM" />
      </Match>
  </FindBugsFilter>