Revert HDFS-3837. Fix DataNode.recoverBlock findbugs warning.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1376701 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
26c259a638
commit
c10a73350e
|
@ -659,8 +659,6 @@ Branch-2 ( Unreleased changes )
|
|||
HDFS-3830. test_libhdfs_threaded: use forceNewInstance.
|
||||
(Colin Patrick McCabe via eli)
|
||||
|
||||
HDFS-3837. Fix DataNode.recoverBlock findbugs warning. (eli)
|
||||
|
||||
HDFS-3835. Long-lived 2NN cannot perform a checkpoint if security is
|
||||
enabled and the NN restarts with outstanding delegation tokens. (atm)
|
||||
|
||||
|
|
|
@ -88,4 +88,13 @@ public class DatanodeRegistration extends DatanodeID
|
|||
+ ", storageInfo=" + storageInfo
|
||||
+ ")";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object to) {
|
||||
return super.equals(to);
|
||||
}
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return super.hashCode();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue