[jOOQ/jOOQ#13071] Deprecate the org.jooq.Internal annotation

This commit is contained in:
Lukas Eder 2022-02-15 08:55:57 +01:00
parent c086c93e24
commit 19f56d553e

View File

@ -54,11 +54,14 @@ import java.lang.annotation.Target;
* containing library.
*
* @author Knut Wannheden
* @deprecated - 3.17.0 - [#13071] - Use
* {@link org.jetbrains.annotations.ApiStatus.Internal} instead.
*/
@Documented
@Retention(RetentionPolicy.CLASS)
@Target(value = { FIELD, METHOD, TYPE, ANNOTATION_TYPE })
@Internal
@org.jetbrains.annotations.ApiStatus.Internal
@Deprecated
public @interface Internal {
}