File tree 4 files changed +4
-1
lines changed
src/main/kotlin/com/fasterxml/jackson/module/kotlin
4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 234
234
<!-- public -->
235
235
<!-- removed -->
236
236
<exclude >com.fasterxml.jackson.module.kotlin.SequenceSerializer</exclude >
237
+ <exclude >com.fasterxml.jackson.module.kotlin.KotlinModule#serialVersionUID</exclude >
237
238
<!-- internal -->
238
239
</excludes >
239
240
</parameter >
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Contributors:
18
18
# 2 .17.0 (not yet released)
19
19
20
20
WrongWrong (@k163377 )
21
+ * #746 : The KotlinModule#serialVersionUID is set to private.
21
22
* #745 : Modified isKotlinClass determination method.
22
23
* #744 : API deprecation update for KotlinModule.
23
24
* #743 : Fix handling of vararg deserialization.
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Co-maintainers:
18
18
19
19
2.17 .0 (not yet released )
20
20
21
+ #746 : The KotlinModule #serialVersionUID is set to private .
21
22
#745 : Modified isKotlinClass determination method .
22
23
#744 : Functions that were already marked as deprecated ,
23
24
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(
59
59
) : SimpleModule(KotlinModule : :class.java.name, PackageVersion .VERSION ) {
60
60
companion object {
61
61
// Increment when option is added
62
- const val serialVersionUID = 2L
62
+ private const val serialVersionUID = 2L
63
63
}
64
64
65
65
init {
You can’t perform that action at this time.
0 commit comments