We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f1523 commit 006638bCopy full SHA for 006638b
src/main/kotlin/com/fasterxml/jackson/module/kotlin/ArgumentBucket.kt
@@ -23,6 +23,8 @@ internal class BucketGenerator(parameters: List<KParameter>) {
23
private const val FILLED_MASK = -1
24
25
private val ABSENT_VALUE: Map<Class<*>, Any> = mapOf(
26
+ Boolean::class.javaPrimitiveType!! to false,
27
+ Char::class.javaPrimitiveType!! to Char.MIN_VALUE,
28
Byte::class.javaPrimitiveType!! to Byte.MIN_VALUE,
29
Short::class.javaPrimitiveType!! to Short.MIN_VALUE,
30
Int::class.javaPrimitiveType!! to Int.MIN_VALUE,
0 commit comments