HBASE-22243 Removed deprecated method in Result
This commit is contained in:
parent
7d1399caa7
commit
88de644736
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue