From 4a38be447eb8d5e7caec2b4db5e0fca03c6280a4 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Tue, 2 Jul 2024 09:29:07 +0200 Subject: [PATCH] [jOOQ/jOOQ#16892] Invalid link in Fields javadoc --- jOOQ/src/main/java/org/jooq/Fields.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/Fields.java b/jOOQ/src/main/java/org/jooq/Fields.java index 486b08e704..b517ceed75 100644 --- a/jOOQ/src/main/java/org/jooq/Fields.java +++ b/jOOQ/src/main/java/org/jooq/Fields.java @@ -174,7 +174,7 @@ public interface Fields { * types from {@link SQLDataType}. If you're using any custom data types by * means of a {@link Converter} or {@link Binding}, it's better to pass that * converted {@link DataType} reference explicitly to - * {@link #cast(DataType)}. + * {@link #field(Name, DataType)}. * * @param name The unqualified name of the field * @param type The type to coerce the resulting field to @@ -243,7 +243,7 @@ public interface Fields { * types from {@link SQLDataType}. If you're using any custom data types by * means of a {@link Converter} or {@link Binding}, it's better to pass that * converted {@link DataType} reference explicitly to - * {@link #cast(DataType)}. + * {@link #field(Name, DataType)}. * * @param name The qualified name of the field * @param type The type to coerce the resulting field to @@ -295,7 +295,7 @@ public interface Fields { * types from {@link SQLDataType}. If you're using any custom data types by * means of a {@link Converter} or {@link Binding}, it's better to pass that * converted {@link DataType} reference explicitly to - * {@link #cast(DataType)}. + * {@link #field(Name, DataType)}. * * @param index The 0-based index of the field * @param type The type to coerce the resulting field to