You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2014/04/12 03:11:14 UTC

[jira] [Created] (HBASE-10968) Null check in TableSnapshotInputFormat#TableSnapshotRegionRecordReader#initialize() is redundant

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)