File tree Expand file tree Collapse file tree 4 files changed +4
-1
lines changed
src/main/kotlin/com/fasterxml/jackson/module/kotlin Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 234234 <!-- public -->
235235 <!-- removed -->
236236 <exclude >com.fasterxml.jackson.module.kotlin.SequenceSerializer</exclude >
237+ <exclude >com.fasterxml.jackson.module.kotlin.KotlinModule#serialVersionUID</exclude >
237238 <!-- internal -->
238239 </excludes >
239240 </parameter >
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Contributors:
1818# 2 .17.0 (not yet released)
1919
2020WrongWrong (@k163377 )
21+ * #746 : The KotlinModule#serialVersionUID is set to private.
2122* #745 : Modified isKotlinClass determination method.
2223* #744 : API deprecation update for KotlinModule.
2324* #743 : Fix handling of vararg deserialization.
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Co-maintainers:
1818
19192.17 .0 (not yet released )
2020
21+ #746 : The KotlinModule #serialVersionUID is set to private .
2122#745 : Modified isKotlinClass determination method .
2223#744 : Functions that were already marked as deprecated ,
2324 such as the primary constructor in KotlinModule and some functions in Builder ,
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class KotlinModule @Deprecated(
5959) : SimpleModule(KotlinModule : :class.java.name, PackageVersion .VERSION ) {
6060 companion object {
6161 // Increment when option is added
62- const val serialVersionUID = 2L
62+ private const val serialVersionUID = 2L
6363 }
6464
6565 init {
You can’t perform that action at this time.
0 commit comments