Ted Yu created HBASE-10968:
------------------------------

             Summary: Null check in 
TableSnapshotInputFormat#TableSnapshotRegionRecordReader#initialize() is 
redundant
                 Key: HBASE-10968
                 URL: https://issues.apache.org/jira/browse/HBASE-10968
             Project: HBase
          Issue Type: Bug
            Reporter: Ted Yu


Here is related code:
{code}
    public void initialize(InputSplit split, TaskAttemptContext context) throws 
IOException,
        InterruptedException {

      Configuration conf = context.getConfiguration();
...
      if (context != null) {
        this.context = context;
        getCounter = 
TableRecordReaderImpl.retrieveGetCounterWithStringsParams(context);
      }
{code}
context was dereferenced first, leaving the null check ineffective.



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to