From 88de644736f02bae5f2be43ca08af25bb3cdc884 Mon Sep 17 00:00:00 2001 From: Sayed Anisul Hoque Date: Mon, 15 Apr 2019 14:11:14 +0200 Subject: [PATCH] HBASE-22243 Removed deprecated method in Result --- .../java/org/apache/hadoop/hbase/client/Result.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Result.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Result.java index 5d56e836704..ed8619d464c 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Result.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Result.java @@ -923,16 +923,6 @@ public class Result implements CellScannable, CellScanner { return stale; } - /** - * @deprecated the word 'partial' ambiguous, use {@link #mayHaveMoreCellsInRow()} instead. - * Deprecated since 1.4.0. - * @see #mayHaveMoreCellsInRow() - */ - @Deprecated - public boolean isPartial() { - return mayHaveMoreCellsInRow; - } - /** * For scanning large rows, the RS may choose to return the cells chunk by chunk to prevent OOM * or timeout. This flag is used to tell you if the current Result is the last one of the current