[jOOQ/jOOQ#13640] Fix nullability annotation on QualifiedJoin::

This commit is contained in:
Lukas Eder 2022-11-15 16:01:09 +01:00
parent 8d110ef117
commit 0cafd1baa3
2 changed files with 7 additions and 1 deletions

View File

@ -2322,6 +2322,12 @@ package org.jooq.impl;

View File

@ -944,7 +944,7 @@ public final class QOM {
{
@Nullable Condition $on();
@NotNull J $on(Condition on);
@Nullable UnmodifiableList<Field<?>> $using();
@NotNull UnmodifiableList<Field<?>> $using();
@NotNull J $using(Collection<? extends Field<?>> using);
}