Skip to content

Commit

Permalink
Allow passing Iterable to InMemoryRecordSet
Browse files Browse the repository at this point in the history
  • Loading branch information
losipiuk committed Apr 4, 2018
1 parent 419347c commit 9cfb739
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -41,7 +41,7 @@ public class InMemoryRecordSet
private final List<Type> types;
private final Iterable<? extends List<?>> records;

public InMemoryRecordSet(Collection<? extends Type> types, Collection<? extends List<?>> records)
public InMemoryRecordSet(Collection<? extends Type> types, Iterable<? extends List<?>> records)
{
this.types = Collections.unmodifiableList(new ArrayList<>(types));
this.records = records;
Expand Down

0 comments on commit 9cfb739

Please sign in to comment.