Skip to content

Commit

Permalink
Merge pull request hazelcast#17219 from pveentjer/remotes/v3.11/perfo…
Browse files Browse the repository at this point in the history
…rmance/17207-paging-predicate

[Backport] Resolved performance problem with PagingPredicate JDK8
  • Loading branch information
pveentjer committed Jul 20, 2020
2 parents aeb5148 + 545ec5f commit 1bfa1ed
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.ListIterator;
import java.util.Map;
Expand Down Expand Up @@ -61,7 +60,7 @@
*/
public class QueryResult implements Result<QueryResult>, IdentifiedDataSerializable, Iterable<QueryResultRow> {

private List rows = new LinkedList();
private List rows = new ArrayList();

private Collection<Integer> partitionIds;
private IterationType iterationType;
Expand Down

0 comments on commit 1bfa1ed

Please sign in to comment.