This is an automated email from the ASF dual-hosted git repository.
janh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 88de644 HBASE-22243 Removed deprecated method in Result
88de644 is described below
commit 88de644736f02bae5f2be43ca08af25bb3cdc884
Author: Sayed Anisul Hoque <[email protected]>
AuthorDate: Mon Apr 15 14:11:14 2019 +0200
HBASE-22243 Removed deprecated method in Result
---
.../src/main/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 5d56e83..ed8619d 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
@@ -924,16 +924,6 @@ public class Result implements CellScannable, CellScanner {
}
/**
- * @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
* row. False means this Result is the last one. True means there MAY be
more cells belonging to