[jOOQ/jOOQ#13513] LoaderLoadStep.execute() shouldn't have @CheckReturnValue annotation

This commit is contained in:
Lukas Eder 2022-05-03 15:03:10 +02:00
parent 4f5ad3ce74
commit 5050246b68

View File

@ -75,7 +75,7 @@ public interface LoaderLoadStep<R extends Record> {
* <code>Loader</code> object. They can be accessed using
* {@link Loader#errors()}
*/
@NotNull @CheckReturnValue
@NotNull
@Support
@Blocking
Loader<R> execute() throws IOException;