HBASE-13983 Doc how the oddball HTable methods getStartKey, getEndKey, etc. will be removed in 2.0.0

This commit is contained in:
stack 2015-07-01 13:03:55 -07:00
parent 5d1be4a317
commit 460d76f623
1 changed files with 0 additions and 24 deletions

View File

@ -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.