[jOOQ/jOOQ#15732] The type hints will continue until javac morale improves

This commit is contained in:
Lukas Eder 2024-03-27 17:35:55 +01:00
parent 3b6045ff43
commit e460a873fe

View File

@ -4414,8 +4414,8 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
case NATIVE:
return apply(
(List<?>) nativePatch.apply(ctx.resultSet().getObject(ctx.index())),
l -> readMultisetList(ctx, row, recordType, l)
nativePatch.apply(ctx.resultSet().getObject(ctx.index())),
(List<?> l) -> readMultisetList(ctx, row, recordType, l)
);
}