You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2015/08/11 02:30:22 UTC

[3/3] hbase git commit: HBASE-14194 Undeprecate methods in ThriftServerRunner.HBaseHandler

HBASE-14194 Undeprecate methods in ThriftServerRunner.HBaseHandler

Signed-off-by: Andrew Purtell <ap...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/323e48ad
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/323e48ad
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/323e48ad

Branch: refs/heads/branch-1.2
Commit: 323e48adab37926c982fac9cc7427beb0999d8fb
Parents: 7f33e63
Author: Lars Francke <la...@gmail.com>
Authored: Fri Aug 7 19:28:06 2015 +0200
Committer: Andrew Purtell <ap...@apache.org>
Committed: Mon Aug 10 17:29:40 2015 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hbase/thrift/ThriftServerRunner.java | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/323e48ad/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServerRunner.java
----------------------------------------------------------------------
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServerRunner.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServerRunner.java
index c97467a..a71bcf9 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServerRunner.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServerRunner.java
@@ -138,7 +138,6 @@ import com.google.common.util.concurrent.ThreadFactoryBuilder;
  * the Hbase API specified in the Hbase.thrift IDL file.
  */
 @InterfaceAudience.Private
-@SuppressWarnings("deprecation")
 public class ThriftServerRunner implements Runnable {
 
   private static final Log LOG = LogFactory.getLog(ThriftServerRunner.class);
@@ -853,7 +852,6 @@ public class ThriftServerRunner implements Runnable {
       }
     }
 
-    @Deprecated
     @Override
     public List<TCell> get(
         ByteBuffer tableName, ByteBuffer row, ByteBuffer column,
@@ -898,7 +896,6 @@ public class ThriftServerRunner implements Runnable {
       }
     }
 
-    @Deprecated
     @Override
     public List<TCell> getVer(ByteBuffer tableName, ByteBuffer row, ByteBuffer column,
         int numVersions, Map<ByteBuffer, ByteBuffer> attributes) throws IOError {
@@ -941,7 +938,6 @@ public class ThriftServerRunner implements Runnable {
       }
     }
 
-    @Deprecated
     @Override
     public List<TCell> getVerTs(ByteBuffer tableName, ByteBuffer row, ByteBuffer column,
         long timestamp, int numVersions, Map<ByteBuffer, ByteBuffer> attributes) throws IOError {
@@ -1338,7 +1334,6 @@ public class ThriftServerRunner implements Runnable {
       }
     }
 
-    @Deprecated
     @Override
     public long atomicIncrement(
         ByteBuffer tableName, ByteBuffer row, ByteBuffer column, long amount)