wrongwrong
11/20/2023, 12:23 PMjackson-module-kotlin
in libraries.
As the maintainer, I have received several binary compatibility issues caused by code that initializes KotlinModule
from its constructor.
On the other hand, KotlinModule
constructors have been deprecated for over 2 years now.
The recommended initialization method for KotlinModule
is either of the following (available since 2.12)
• Using the builder
• Using the `kotlinModule` function
• (or Use other extensions)
I would appreciate it if you all could modify the code.
Thank you.wrongwrong
11/20/2023, 12:30 PMkotlin-reflect
and call the primary constructor with callBy(emptyMap())
.