[jOOQ/jOOQ#10775] Removed unused generic type variable

This commit is contained in:
Lukas Eder 2020-10-26 18:07:23 +01:00
parent 0cfdaf5082
commit dddc1504b0

View File

@ -70,7 +70,7 @@ public final class Rows {
* Create a collector that can collect into a list of {@link RowN}.
*/
@SafeVarargs
public static <T, T1> Collector<T, ?, List<RowN>> collecting(
public static <T> Collector<T, ?, List<RowN>> collecting(
Function<? super T, ?>... functions
) {
return Collector.of(