HBASE-23844 Removed deprecated Scan(byte[], Filter) from Scan
Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
parent
ae781e569c
commit
68f4fd1ee2
|
@ -180,17 +180,6 @@ public class Scan extends Query {
|
||||||
*/
|
*/
|
||||||
public Scan() {}
|
public Scan() {}
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated since 2.0.0 and will be removed in 3.0.0. Use
|
|
||||||
* {@code new Scan().withStartRow(startRow).setFilter(filter)} instead.
|
|
||||||
* @see <a href="https://issues.apache.org/jira/browse/HBASE-17320">HBASE-17320</a>
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public Scan(byte[] startRow, Filter filter) {
|
|
||||||
this(startRow);
|
|
||||||
this.filter = filter;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a Scan operation starting at the specified row.
|
* Create a Scan operation starting at the specified row.
|
||||||
* <p>
|
* <p>
|
||||||
|
|
Loading…
Reference in New Issue