From 9c6d123b224f63d8456680dcc5c701d04954634e Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Tue, 25 Oct 2016 14:32:50 -0700 Subject: [PATCH] Revert "HBASE-1600 Table#checkAndPut() docs are too vague (Csaba Skrabak)" Committed with the wrong HBASE JIRA number This reverts commit 36aa41685685f6b7d10fea63787cb8adacecc2e7. --- .../org/apache/hadoop/hbase/client/Table.java | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java index 016894b5f9e..4d93442ea6f 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Table.java @@ -231,12 +231,7 @@ public interface Table extends Closeable { /** * Atomically checks if a row/family/qualifier value matches the expected * value. If it does, it adds the put. If the passed value is null, the check - * is for the lack of column (ie: non-existence) - * - * The expected value argument of this call is on the left and the current - * value of the cell is on the right side of the comparison operator. - * - * Ie. eg. GREATER operator means expected value > existing <=> add the put. + * is for the lack of column (ie: non-existance) * * @param row to check * @param family column family to check @@ -291,12 +286,7 @@ public interface Table extends Closeable { /** * Atomically checks if a row/family/qualifier value matches the expected * value. If it does, it adds the delete. If the passed value is null, the - * check is for the lack of column (ie: non-existence) - * - * The expected value argument of this call is on the left and the current - * value of the cell is on the right side of the comparison operator. - * - * Ie. eg. GREATER operator means expected value > existing <=> add the delete. + * check is for the lack of column (ie: non-existance) * * @param row to check * @param family column family to check @@ -565,11 +555,6 @@ public interface Table extends Closeable { * If it does, it performs the row mutations. If the passed value is null, the check * is for the lack of column (ie: non-existence) * - * The expected value argument of this call is on the left and the current - * value of the cell is on the right side of the comparison operator. - * - * Ie. eg. GREATER operator means expected value > existing <=> perform row mutations. - * * @param row to check * @param family column family to check * @param qualifier column qualifier to check