diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Get.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Get.java index efb437f..f4f864e 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Get.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Get.java @@ -76,7 +76,6 @@ public class Get extends Query private int storeOffset = 0; private TimeRange tr = new TimeRange(); private boolean checkExistenceOnly = false; - private boolean closestRowBefore = false; private Map> familyMap = new TreeMap>(Bytes.BYTES_COMPARATOR); @@ -141,26 +140,6 @@ public class Get extends Query } /** - * This will always return the default value which is false as client cannot set the value to this - * property any more. - * @deprecated since 2.0.0 and will be removed in 3.0.0 - */ - @Deprecated - public boolean isClosestRowBefore() { - return closestRowBefore; - } - - /** - * This is not used any more and does nothing. Use reverse scan instead. - * @deprecated since 2.0.0 and will be removed in 3.0.0 - */ - @Deprecated - public Get setClosestRowBefore(boolean closestRowBefore) { - // do Nothing - return this; - } - - /** * Get all columns from the specified family. *

* Overrides previous calls to addColumn for this family.