File tree 1 file changed +1
-9
lines changed
src/main/kotlin/com/fasterxml/jackson/module/kotlin
1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -56,12 +56,6 @@ object ValueClassUnboxSerializer : StdSerializer<Any>(Any::class.java) {
56
56
57
57
override fun serialize (value : Any , gen : JsonGenerator , provider : SerializerProvider ) {
58
58
val unboxed = value::class .java.getMethod(" unbox-impl" ).invoke(value)
59
-
60
- if (unboxed == null ) {
61
- provider.defaultSerializeNull(gen)
62
- return
63
- }
64
-
65
59
provider.defaultSerializeValue(unboxed, gen)
66
60
}
67
61
}
@@ -76,9 +70,7 @@ internal sealed class ValueClassSerializer<T : Any>(t: Class<T>) : StdSerializer
76
70
val unboxed = unboxMethod.invoke(value)
77
71
// As shown in the processing of the factory function, jsonValueGetter is always a static method.
78
72
val jsonValue: Any? = staticJsonValueGetter.invoke(null , unboxed)
79
- jsonValue
80
- ?.let { provider.defaultSerializeValue(it, gen) }
81
- ? : provider.defaultSerializeNull(gen)
73
+ provider.defaultSerializeValue(jsonValue, gen)
82
74
}
83
75
}
84
76
You can’t perform that action at this time.
0 commit comments