HBASE-10460 Return value of Scan#setSmall() should be void

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1564561 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2014-02-04 23:21:51 +00:00
parent 1f45759770
commit 22d93bd3c6
1 changed files with 1 additions and 2 deletions

View File

@ -760,9 +760,8 @@ public class Scan extends Query {
* @param small
* @return this instance
*/
public Scan setSmall(boolean small) {
public void setSmall(boolean small) {
this.small = small;
return this;
}
/**