From 0448131c2a3752d35bf4a37f736c801d15937a30 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Mon, 11 Aug 2025 13:11:48 +0200 Subject: [PATCH] [jOOQ/jOOQ#18836] Mention also LocalDateAsLocalDateTimeBinding --- jOOQ-codegen/src/main/java/org/jooq/codegen/GenerationTool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jOOQ-codegen/src/main/java/org/jooq/codegen/GenerationTool.java b/jOOQ-codegen/src/main/java/org/jooq/codegen/GenerationTool.java index 3e2be516e5..3bc89aeaff 100644 --- a/jOOQ-codegen/src/main/java/org/jooq/codegen/GenerationTool.java +++ b/jOOQ-codegen/src/main/java/org/jooq/codegen/GenerationTool.java @@ -716,7 +716,7 @@ public class GenerationTool { if (d.getEnumTypes().size() > 0) log.warn("DEPRECATED", "The configuration property /configuration/generator/database/enumTypes is experimental and deprecated and will be removed in the future."); if (Boolean.TRUE.equals(d.isDateAsTimestamp())) - log.warn("DEPRECATED", "The configuration property /configuration/generator/database/dateAsTimestamp is deprecated as it is superseded by custom bindings and converters, or by using org.jooq.impl.DateAsTimestampBinding. It will thus be removed in the future. More information here: https://www.jooq.org/doc/latest/manual/reference/reference-data-types/data-types-oracle-date/"); + log.warn("DEPRECATED", "The configuration property /configuration/generator/database/dateAsTimestamp is deprecated as it is superseded by custom bindings and converters, or by using org.jooq.impl.DateAsTimestampBinding or org.jooq.impl.LocalDateAsLocalDateTimeBinding. It will thus be removed in the future. More information here: https://www.jooq.org/doc/latest/manual/reference/reference-data-types/data-types-oracle-date/"); if (Boolean.TRUE.equals(d.isIgnoreProcedureReturnValues())) log.warn("DEPRECATED", "The flag is deprecated and used for backwards-compatibility only. It will be removed in the future.");