Ignore:
Timestamp:
12/20/13 10:03:18 (10 years ago)
Author:
keeloo
Message:

Finished the upgrade. The web application still needs to be tested.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/to-wicket-1.6/vlo_web_app/src/main/java/eu/clarin/cmdi/vlo/pages/SolrFacetFieldDataProvider.java

    r2768 r4208  
    5757
    5858    @Override
    59     public Iterator<? extends Count> iterator(int first, int count) {
    60         return getFacet().getValues().subList(first, first + count).iterator();
     59    public Iterator<? extends Count> iterator(long first, long count) {
     60        return getFacet().getValues().subList((int)first, (int)first + (int)count).iterator();
    6161    }
    6262
    6363    @Override
    64     public int size() {
     64    public long size() {
    6565        return getFacet().getValueCount();
    6666    }
Note: See TracChangeset for help on using the changeset viewer.