From 67029b61d244690adf2e17856a84a978bb4e56e2 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Mon, 2 Mar 2020 12:03:49 +0100 Subject: [PATCH] [jOOQ/jOOQ#9911] Deprecate Comparator.supportsQuantifier() and supportsSubselect() --- jOOQ/src/main/java/org/jooq/Comparator.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jOOQ/src/main/java/org/jooq/Comparator.java b/jOOQ/src/main/java/org/jooq/Comparator.java index 72ff78187b..cf2d727865 100644 --- a/jOOQ/src/main/java/org/jooq/Comparator.java +++ b/jOOQ/src/main/java/org/jooq/Comparator.java @@ -141,14 +141,20 @@ public enum Comparator { /** * Whether this comparator supports quantifiers on the right-hand side. + * + * @deprecated - 3.14.0 - [#9911] - This method is no longer supported. */ + @Deprecated public boolean supportsQuantifier() { return supportsQuantifier; } /** * Whether this comparator supports subselects on the right-hand side. + * + * @deprecated - 3.14.0 - [#9911] - This method is no longer supported. */ + @Deprecated public boolean supportsSubselect() { return supportsSubselect; }