Description
I've found a small bug in the HST demo AbstractSearchComponent.
Line 99:
while (iterator.hasNext() && count <= DEFAULT_PAGE_SIZE) {
Should be:
while (iterator.hasNext() && count < DEFAULT_PAGE_SIZE) {
Kind regards,
Jasper
I've found a small bug in the HST demo AbstractSearchComponent.
Line 99:
while (iterator.hasNext() && count <= DEFAULT_PAGE_SIZE) {
Should be:
while (iterator.hasNext() && count < DEFAULT_PAGE_SIZE) {
Kind regards,
Jasper