You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "Yongjun Zhang (JIRA)" <ji...@apache.org> on 2014/02/27 23:23:20 UTC

[jira] [Created] (HDFS-6030) to remove a redundant/unused constructor in INode.java

Yongjun Zhang created HDFS-6030:
-----------------------------------

             Summary: to remove a redundant/unused constructor in INode.java
                 Key: HDFS-6030
                 URL: https://issues.apache.org/jira/browse/HDFS-6030
             Project: Hadoop HDFS
          Issue Type: Task
            Reporter: Yongjun Zhang
            Priority: Trivial


When I look at fix of HDFS-4879, I noticed that class BlocksMapUpdateInfo in INode.java,  has a constructor that still uses ArrayList<Block> (which HDFS-4879 tries to replace with ChunkedArrayList for better memory efficiency)

{code}
    public static class BlocksMapUpdateInfo { 
    ...... 
    public BlocksMapUpdateInfo(List<Block> toDeleteList) {
      this.toDeleteList = toDeleteList == null ? new ArrayList<Block>()
          : toDeleteList;
    }
    ......
    }
{code}

It turns out that this constructor is not used anywhere. I'm filing this JIRA to remove it.




--
This message was sent by Atlassian JIRA
(v6.1.5#6160)