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 2020/10/02 15:02:19 UTC

[hbase] branch branch-2 updated: HBASE-25120 Remove the deprecated annotation for MetaTableAccessor.getScanForTableName (#2493)

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

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


The following commit(s) were added to refs/heads/branch-2 by this push:
     new 7db2a88  HBASE-25120 Remove the deprecated annotation for MetaTableAccessor.getScanForTableName (#2493)
7db2a88 is described below

commit 7db2a88a7ddd05dd0917456c88fa3325928edf1e
Author: SteNicholas <pr...@163.com>
AuthorDate: Fri Oct 2 23:00:42 2020 +0800

    HBASE-25120 Remove the deprecated annotation for MetaTableAccessor.getScanForTableName (#2493)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 .../src/main/java/org/apache/hadoop/hbase/MetaTableAccessor.java         | 1 -
 1 file changed, 1 deletion(-)

diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/MetaTableAccessor.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/MetaTableAccessor.java
index fc4ebc4..5b35fc5 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/MetaTableAccessor.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/MetaTableAccessor.java
@@ -563,7 +563,6 @@ public class MetaTableAccessor {
    * @param tableName bytes of table's name
    * @return configured Scan object
    */
-  @Deprecated
   public static Scan getScanForTableName(Connection connection, TableName tableName) {
     // Start key is just the table name with delimiters
     byte[] startKey = getTableStartRowForMeta(tableName, QueryType.REGION);