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:
parent
1f45759770
commit
22d93bd3c6
|
@ -760,9 +760,8 @@ public class Scan extends Query {
|
||||||
* @param small
|
* @param small
|
||||||
* @return this instance
|
* @return this instance
|
||||||
*/
|
*/
|
||||||
public Scan setSmall(boolean small) {
|
public void setSmall(boolean small) {
|
||||||
this.small = small;
|
this.small = small;
|
||||||
return this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue