From 783589933fe9a88a755f3b18f6a525f115a0ada5 Mon Sep 17 00:00:00 2001 From: WangXin <1458451310@qq.com> Date: Wed, 11 Sep 2024 10:11:33 +0800 Subject: [PATCH] HBASE-28826 Remove the deprecated annotation in RegionCoprocessorHost (#6222) Co-authored-by: wangxin Signed-off-by: Duo Zhang (cherry picked from commit 9df08255384cb17ae9a93cd139210395c472876b) --- .../hadoop/hbase/regionserver/RegionCoprocessorHost.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.java index 929b24e521a2..f9a28e814dec 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.java @@ -960,10 +960,7 @@ public void call(RegionObserver observer) throws IOException { * @param get - the get that could be used Note that the get only does not specify the family * and qualifier that should be used * @return true if default processing should be bypassed - * @deprecated In hbase-2.0.0. Will be removed in hbase-3.0.0. Added explicitly for a single - * Coprocessor for its needs only. Will be removed. */ - @Deprecated public boolean prePrepareTimeStampForDeleteVersion(final Mutation mutation, final Cell kv, final byte[] byteNow, final Get get) throws IOException { if (coprocEnvironments.isEmpty()) { @@ -1654,10 +1651,6 @@ public void call(EndpointObserver observer) throws IOException { }); } - /** - * @deprecated Since 2.0 with out any replacement and will be removed in 3.0 - */ - @Deprecated public DeleteTracker postInstantiateDeleteTracker(DeleteTracker result) throws IOException { if (this.coprocEnvironments.isEmpty()) { return result;