HDFS-6030. Remove an unused constructor in INode.java (yzhang via cmccabe)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1573031 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5c381ade4e
commit
2333388e47
|
@ -367,6 +367,9 @@ Release 2.4.0 - UNRELEASED
|
||||||
|
|
||||||
HDFS-6025. Update findbugsExcludeFile.xml. (szetszwo)
|
HDFS-6025. Update findbugsExcludeFile.xml. (szetszwo)
|
||||||
|
|
||||||
|
HDFS-6030. Remove an unused constructor in INode.java. (yzhang via
|
||||||
|
cmccabe)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-5790. LeaseManager.findPath is very slow when many leases need recovery
|
HDFS-5790. LeaseManager.findPath is very slow when many leases need recovery
|
||||||
|
|
|
@ -752,11 +752,6 @@ public abstract class INode implements INodeAttributes, Diff.Element<byte[]> {
|
||||||
*/
|
*/
|
||||||
private List<Block> toDeleteList;
|
private List<Block> toDeleteList;
|
||||||
|
|
||||||
public BlocksMapUpdateInfo(List<Block> toDeleteList) {
|
|
||||||
this.toDeleteList = toDeleteList == null ? new ArrayList<Block>()
|
|
||||||
: toDeleteList;
|
|
||||||
}
|
|
||||||
|
|
||||||
public BlocksMapUpdateInfo() {
|
public BlocksMapUpdateInfo() {
|
||||||
toDeleteList = new ChunkedArrayList<Block>();
|
toDeleteList = new ChunkedArrayList<Block>();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue