ACE-2620 - ResultSet off by one errors.

- Missing "more..." link in LiveSearch when page boundary (e.g. 6 results in total, page size of 5, no More... link shown)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@85781 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2014-09-26 11:16:32 +00:00
parent 952eb031a7
commit f3fb147553

View File

@@ -374,7 +374,7 @@ public class SolrJSONResultSet implements ResultSet, JSONResult
@Override @Override
public boolean hasMore() public boolean hasMore()
{ {
return numberFound.longValue() > (start.longValue() + page.size() + 1); return numberFound.longValue() > (start.longValue() + page.size());
} }
/* /*