Repository: hbase Updated Branches: refs/heads/HBASE-19064 55abf011b -> 3d1165293 (forced update)
HBASE-20684 org.apache.hadoop.hbase.client.Scan#setStopRow javadoc uses incorrect method Signed-off-by: zhangduo <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7d3750bd Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7d3750bd Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7d3750bd Branch: refs/heads/HBASE-19064 Commit: 7d3750bd9fc9747623549c242cc4171e224b3eaf Parents: 57c8671 Author: EugeneNik <[email protected]> Authored: Tue Jun 5 21:57:51 2018 +0800 Committer: zhangduo <[email protected]> Committed: Tue Jun 5 21:57:51 2018 +0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/hadoop/hbase/client/Scan.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/7d3750bd/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java index 32fe2dc..d4aff04 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java @@ -483,7 +483,7 @@ public class Scan extends Query { * @return this * @throws IllegalArgumentException if stopRow does not meet criteria for a row key (when length * exceeds {@link HConstants#MAX_ROW_LENGTH}) - * @deprecated use {@link #withStartRow(byte[])} instead. This method may change the inclusive of + * @deprecated use {@link #withStopRow(byte[])} instead. This method may change the inclusive of * the stop row to keep compatible with the old behavior. */ @Deprecated
