From 19433ba677d9697f740d32c74e56c719ada5ff1a Mon Sep 17 00:00:00 2001 From: Rushabh Shah Date: Mon, 1 Nov 2021 03:58:31 -0400 Subject: [PATCH] HBASE-26404 Update javadoc for CellUtil#createCell with tags methods. (#3801) Signed-off-by: Duo Zhang --- .../src/main/java/org/apache/hadoop/hbase/CellUtil.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java index 2ef8f574808..71f5a66eb50 100644 --- a/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java +++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java @@ -591,6 +591,7 @@ public final class CellUtil { /** * Note : Now only CPs can create cell with tags using the CP environment + * Within CP, use {@link RawCell#createCell(Cell, List)} method instead * @return A new cell which is having the extra tags also added to it. * @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0. * @@ -602,6 +603,7 @@ public final class CellUtil { /** * Now only CPs can create cell with tags using the CP environment + * Within CP, use {@link RawCell#createCell(Cell, List)} method instead * @return A new cell which is having the extra tags also added to it. * @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0. */ @@ -612,6 +614,7 @@ public final class CellUtil { /** * Now only CPs can create cell with tags using the CP environment + * Within CP, use {@link RawCell#createCell(Cell, List)} method instead * @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0. */ @Deprecated