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 2021/11/01 08:05:15 UTC

[hbase] branch branch-2.4 updated: HBASE-26404 Update javadoc for CellUtil#createCell with tags methods. (#3801)

This is an automated email from the ASF dual-hosted git repository.

zhangduo pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new 2a31800  HBASE-26404 Update javadoc for CellUtil#createCell with tags methods. (#3801)
2a31800 is described below

commit 2a318009db48dc6c8ce6fd1180cfed951b8550b1
Author: Rushabh Shah <sh...@gmail.com>
AuthorDate: Mon Nov 1 03:58:31 2021 -0400

    HBASE-26404 Update javadoc for CellUtil#createCell with tags methods. (#3801)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 hbase-common/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 2ef8f57..71f5a66 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