From 6603a30b0a243d1beee86885cfdc110adc19a148 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 30 May 2024 08:15:54 +0200 Subject: [PATCH] javac shenanigans, probably https://bugs.openjdk.org/browse/JDK-8288590 --- jOOQ/src/main/java/org/jooq/impl/QOM.java | 24 +++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/impl/QOM.java b/jOOQ/src/main/java/org/jooq/impl/QOM.java index c5f3e2e262..a96f9bdab8 100644 --- a/jOOQ/src/main/java/org/jooq/impl/QOM.java +++ b/jOOQ/src/main/java/org/jooq/impl/QOM.java @@ -479,9 +479,9 @@ public final class QOM { /** * The INSERT statement. */ - public interface Insert + public interface Insert extends - DMLQuery + org.jooq.DMLQuery { @Nullable With $with(); @NotNull Table $into(); @@ -523,9 +523,9 @@ public final class QOM { /** * An INSERT statement with a RETURNING clause. */ - public interface InsertReturning + public interface InsertReturning extends - ResultQuery + org.jooq.ResultQuery { @NotNull Insert $insert(); @CheckReturnValue @@ -538,9 +538,9 @@ public final class QOM { /** * The UPDATE statement. */ - public interface Update + public interface Update extends - DMLQuery + org.jooq.DMLQuery { @Nullable With $with(); @NotNull Table $table(); @@ -566,9 +566,9 @@ public final class QOM { /** * An UPDATE statement with a RETURNING clause. */ - public interface UpdateReturning + public interface UpdateReturning extends - ResultQuery + org.jooq.ResultQuery { @NotNull Update $update(); @CheckReturnValue @@ -581,9 +581,9 @@ public final class QOM { /** * The DELETE statement. */ - public interface Delete + public interface Delete extends - DMLQuery + org.jooq.DMLQuery { @Nullable With $with(); @NotNull Table $from(); @@ -606,9 +606,9 @@ public final class QOM { /** * An DELETE statement with a RETURNING clause. */ - public interface DeleteReturning + public interface DeleteReturning extends - ResultQuery + org.jooq.ResultQuery { @NotNull Delete $delete(); @CheckReturnValue