diff --git a/jOOQ/src/main/java/org/jooq/CheckReturnValue.java b/jOOQ/src/main/java/org/jooq/CheckReturnValue.java index 7d6d748445..18085a53d7 100644 --- a/jOOQ/src/main/java/org/jooq/CheckReturnValue.java +++ b/jOOQ/src/main/java/org/jooq/CheckReturnValue.java @@ -7,10 +7,16 @@ import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.Target; +import org.jetbrains.annotations.Contract; + /** * Simple version of the JSR 305 annotation that allows for inspecting jOOQ code * and detect accidentally omitted calls to {@link Query#execute()} and the * likes in IntelliJ. + *

+ * This annotation is {@link Internal}. Clients should not rely on its presence. + * The annotation may be replaced with a more suitable one by JetBrains, e.g. + * the {@link Contract} annotation, when a favourable use-case can be found. * * @author Lukas Eder * @see