diff --git a/jOOQ/src/main/java/org/jooq/DataType.java b/jOOQ/src/main/java/org/jooq/DataType.java index dc8b2a538e..c9977f0646 100644 --- a/jOOQ/src/main/java/org/jooq/DataType.java +++ b/jOOQ/src/main/java/org/jooq/DataType.java @@ -272,11 +272,11 @@ public interface DataType extends Named { * Convenience method for converting this type to a read-only type using * {@link Converter#from(Class, Class, Function)}. *

- * EXPERIMENTAL. Unlike {@link #asConvertedDataTypeFrom(Class, Function)}, - * this method attempts to work without an explicit {@link Class} reference - * for the underlying {@link Converter#toType()}. There may be some edge - * cases where this doesn't work. Please report any bugs here: https://github.com/jOOQ/jOOQ/issues/new/choose + * Unlike {@link #asConvertedDataTypeFrom(Class, Function)}, this method + * attempts to work without an explicit {@link Class} reference for the + * underlying {@link Converter#toType()}. There may be some edge cases where + * this doesn't work (e.g. when arrays are involved), in case of which, an + * explicit class literal should be passed. */ @SuppressWarnings("unchecked") @NotNull @@ -302,11 +302,11 @@ public interface DataType extends Named { * Convenience method for converting this type to a write-only type using * {@link Converter#to(Class, Class, Function)}. *

- * EXPERIMENTAL. Unlike {@link #asConvertedDataTypeTo(Class, Function)}, - * this method attempts to work without an explicit {@link Class} reference - * for the underlying {@link Converter#toType()}. There may be some edge - * cases where this doesn't work. Please report any bugs here: https://github.com/jOOQ/jOOQ/issues/new/choose + * Unlike {@link #asConvertedDataTypeTo(Class, Function)}, this method + * attempts to work without an explicit {@link Class} reference for the + * underlying {@link Converter#toType()}. There may be some edge cases where + * this doesn't work (e.g. when arrays are involved), in case of which, an + * explicit class literal should be passed. */ @SuppressWarnings("unchecked") @NotNull diff --git a/jOOQ/src/main/java/org/jooq/impl/DSL.java b/jOOQ/src/main/java/org/jooq/impl/DSL.java index afd5fe62a3..d1c85bb434 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DSL.java +++ b/jOOQ/src/main/java/org/jooq/impl/DSL.java @@ -25570,8 +25570,7 @@ public class DSL { /** * Get the MULTISET operator to nest subqueries. *

- * EXPERIMENTAL: The standard SQL MULTISET operator is poorly - * supported by most dialects. As such, it needs to be emulated using + * The standard SQL MULTISET operator is emulated using * elaborate mappings to any of: *

*