[jOOQ/jOOQ#9911] Deprecate Comparator.supportsQuantifier() and supportsSubselect()

This commit is contained in:
Lukas Eder 2020-03-02 12:03:49 +01:00
parent 1f98e38508
commit 67029b61d2

View File

@ -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;
}