HDFS-3837. Fix DataNode.recoverBlock findbugs warning. Contributed by Eli Collins

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1376129 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2012-08-22 16:26:50 +00:00
parent 6316b0641d
commit 89e16be81b
2 changed files with 2 additions and 9 deletions

View File

@ -654,6 +654,8 @@ Branch-2 ( Unreleased changes )
HDFS-3830. test_libhdfs_threaded: use forceNewInstance.
(Colin Patrick McCabe via eli)
HDFS-3837. Fix DataNode.recoverBlock findbugs warning. (eli)
BREAKDOWN OF HDFS-3042 SUBTASKS
HDFS-2185. HDFS portion of ZK-based FailoverController (todd)

View File

@ -88,13 +88,4 @@ public class DatanodeRegistration extends DatanodeID
+ ", storageInfo=" + storageInfo
+ ")";
}
@Override
public boolean equals(Object to) {
return super.equals(to);
}
@Override
public int hashCode() {
return super.hashCode();
}
}