Hi there, I'm a little confused about the implement of the next(List<Cell> results) method in BaseRegionScanner. It seems to be a infinite recursive loop there.
@Override
public boolean next(List<Cell> results) throws IOException {
return next(results);
}
I noticed that, each place of using "return new BaseRegionScanner()..." has
overrided this method.
So, is it necessary to slightly modify the implement of this method?
Thanks,
Yuhao Bi
