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:04:54 UTC

[hbase] branch branch-2.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.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 e9802dc  HBASE-25120 Remove the deprecated annotation for MetaTableAccessor.getScanForTableName (#2493)
e9802dc is described below

commit e9802dcf2b20f89a44d6a7d2777fd192bc311e6c
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 82ec6fd..0a91244 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
@@ -555,7 +555,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);