You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2019/03/19 09:08:23 UTC

[hbase] branch branch-2.2 updated: HBASE-22042 Missing @Override annotation for RawAsyncTableImpl.scan

This is an automated email from the ASF dual-hosted git repository.

zhangduo pushed a commit to branch branch-2.2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.2 by this push:
     new ed0b746  HBASE-22042 Missing @Override annotation for RawAsyncTableImpl.scan
ed0b746 is described below

commit ed0b7467dcd0ace456ffd81c84c1a75ac02af91f
Author: Rishabh Jain <ri...@gmail.com>
AuthorDate: Thu Mar 14 01:47:15 2019 -0400

    HBASE-22042 Missing @Override annotation for RawAsyncTableImpl.scan
    
    Signed-off-by: zhangduo <zh...@apache.org>
---
 .../src/main/java/org/apache/hadoop/hbase/client/RawAsyncTableImpl.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RawAsyncTableImpl.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RawAsyncTableImpl.java
index 1925c0e..86f11b9 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RawAsyncTableImpl.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RawAsyncTableImpl.java
@@ -436,6 +436,7 @@ class RawAsyncTableImpl implements AsyncTable<AdvancedScanResultConsumer> {
     return newScan;
   }
 
+  @Override
   public void scan(Scan scan, AdvancedScanResultConsumer consumer) {
     new AsyncClientScanner(setDefaultScanConfig(scan), consumer, tableName, conn, retryTimer,
       pauseNs, maxAttempts, scanTimeoutNs, readRpcTimeoutNs, startLogErrorsCnt).start();