fix(util): ObjectListAggregator syntax
This commit is contained in:
		| @@ -5,7 +5,7 @@ import java.util.function.Function; | ||||
|  | ||||
| public class ObjectListAggregator<O, K, V> extends ObjectAggregator<O, K, ArrayList<V>> { | ||||
|  | ||||
|     public ObjectListAggregator(Function<O, K> keySupplier, Function<O, V> valueConsumer) { | ||||
|     public ObjectListAggregator(Function<O, Iterable<K>> keySupplier, Function<O, V> valueConsumer) { | ||||
|         super(keySupplier,  | ||||
|         (l, o) -> l.add(valueConsumer.apply(o)), | ||||
|         () -> new ArrayList<>()); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user