HBASE-13983 Doc how the oddball HTable methods getStartKey, getEndKey, etc. will be removed in 2.0.0
This commit is contained in:
parent
5d1be4a317
commit
460d76f623
|
@ -301,30 +301,6 @@ public class HTable implements HTableInterface {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link RegionLocator#getStartEndKeys()} instead;
|
||||
*/
|
||||
@Deprecated
|
||||
public byte [][] getStartKeys() throws IOException {
|
||||
return locator.getStartKeys();
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link RegionLocator#getEndKeys()} instead;
|
||||
*/
|
||||
@Deprecated
|
||||
public byte[][] getEndKeys() throws IOException {
|
||||
return locator.getEndKeys();
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link RegionLocator#getStartEndKeys()} instead;
|
||||
*/
|
||||
@Deprecated
|
||||
public Pair<byte[][],byte[][]> getStartEndKeys() throws IOException {
|
||||
return locator.getStartEndKeys();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the corresponding start keys and regions for an arbitrary range of
|
||||
* keys.
|
||||
|
|
Loading…
Reference in New Issue