From 5d939cc7b277ecc898e013cdd51125c77691a506 Mon Sep 17 00:00:00 2001 From: wrongwrong Date: Sat, 6 Dec 2025 23:48:04 +0900 Subject: [PATCH] Update deprecation message Because Jackson migrated to 3.x. Since 2.21 corresponds to 3.0, 2.23 corresponds to 3.2. --- src/main/kotlin/tools/jackson/module/kotlin/KotlinFeature.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/tools/jackson/module/kotlin/KotlinFeature.kt b/src/main/kotlin/tools/jackson/module/kotlin/KotlinFeature.kt index 32196b21..3c5e5bd5 100644 --- a/src/main/kotlin/tools/jackson/module/kotlin/KotlinFeature.kt +++ b/src/main/kotlin/tools/jackson/module/kotlin/KotlinFeature.kt @@ -86,7 +86,7 @@ enum class KotlinFeature(internal val enabledByDefault: Boolean) { */ @Deprecated( level = DeprecationLevel.WARNING, - message = "This option will be merged into StrictNullChecks in 2.23.", + message = "This option will be merged into StrictNullChecks in 3.2.", replaceWith = ReplaceWith("StrictNullChecks") ) NewStrictNullChecks(enabledByDefault = false);