From 2c9f979db269ad9a28d968a7cfbe10f0f16a878e Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 14 Aug 2025 15:37:39 +0200 Subject: [PATCH] [jOOQ/jOOQ#18882] HTML encoding issue in DataType Javadoc --- jOOQ/src/main/java/org/jooq/DataType.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/DataType.java b/jOOQ/src/main/java/org/jooq/DataType.java index e0ccfcd4eb..e5229a6725 100644 --- a/jOOQ/src/main/java/org/jooq/DataType.java +++ b/jOOQ/src/main/java/org/jooq/DataType.java @@ -207,11 +207,11 @@ public interface DataType extends Named { *

*


      * // Doesn't work
-     * DataType t1 =
+     * DataType<UserType[]> t1 =
      *   SQLDataType.INTEGER.asConvertedDataType(binding).getArrayDataType();
      *
      * // Works
-     * DataType t2 =
+     * DataType<UserType[]> t2 =
      *   SQLDataType.INTEGER.getArrayDataType().asConvertedDataType(arrayBinding);
      * 
* @@ -233,7 +233,7 @@ public interface DataType extends Named { * Retrieve the Java component type if this is an ARRAY type, or * null, otherwise. *

- * E.g. for DataType, this will return + * E.g. for DataType<String[][][]>, this will return * String[][]. */ @Nullable @@ -243,7 +243,7 @@ public interface DataType extends Named { * Retrieve the Java component data type if this is an ARRAY type, or * null, otherwise. *

- * E.g. for DataType, this will return + * E.g. for DataType<String[][][]>, this will return * DataType<String[][]>. */ @Nullable @@ -253,7 +253,7 @@ public interface DataType extends Named { * Retrieve the Java base type if this is an ARRAY type, or * {@link #getType()}, otherwise. *

- * E.g. for DataType, this will return + * E.g. for DataType<String[][][]>, this will return * String. */ @NotNull @@ -263,7 +263,7 @@ public interface DataType extends Named { * Retrieve the Java component data type if this is an ARRAY type, or * this, otherwise. *

- * E.g. for DataType, this will return + * E.g. for DataType<String[][][]>, this will return * DataType<String>. */ @NotNull