From 8208218852909c2b13c88b457a94c3e2eb8247eb Mon Sep 17 00:00:00 2001 From: Jan Hentschel Date: Wed, 17 Apr 2019 13:51:57 +0200 Subject: [PATCH] HBASE-22259 Removed deprecated method in ReplicationLoadSource --- .../hadoop/hbase/replication/ReplicationLoadSource.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/replication/ReplicationLoadSource.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/replication/ReplicationLoadSource.java index 8ee221958c16..9a9e93b25da2 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/replication/ReplicationLoadSource.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/replication/ReplicationLoadSource.java @@ -60,15 +60,6 @@ public long getSizeOfLogQueue() { return this.sizeOfLogQueue; } - /** - * @deprecated Since 2.0.0. Will be removed in 3.0.0. - * @see #getTimestampOfLastShippedOp() - */ - @Deprecated - public long getTimeStampOfLastShippedOp() { - return getTimestampOfLastShippedOp(); - } - public long getTimestampOfLastShippedOp() { return this.timestampOfLastShippedOp; }