From 006638be3baf8498a7da000b88bf653b90bedd0c Mon Sep 17 00:00:00 2001 From: wrongwrong Date: Sun, 9 May 2021 16:52:52 +0900 Subject: [PATCH] Add missing content --- .../com/fasterxml/jackson/module/kotlin/ArgumentBucket.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/kotlin/com/fasterxml/jackson/module/kotlin/ArgumentBucket.kt b/src/main/kotlin/com/fasterxml/jackson/module/kotlin/ArgumentBucket.kt index 083bf2c77..43f00fde0 100644 --- a/src/main/kotlin/com/fasterxml/jackson/module/kotlin/ArgumentBucket.kt +++ b/src/main/kotlin/com/fasterxml/jackson/module/kotlin/ArgumentBucket.kt @@ -23,6 +23,8 @@ internal class BucketGenerator(parameters: List) { private const val FILLED_MASK = -1 private val ABSENT_VALUE: Map, Any> = mapOf( + Boolean::class.javaPrimitiveType!! to false, + Char::class.javaPrimitiveType!! to Char.MIN_VALUE, Byte::class.javaPrimitiveType!! to Byte.MIN_VALUE, Short::class.javaPrimitiveType!! to Short.MIN_VALUE, Int::class.javaPrimitiveType!! to Int.MIN_VALUE,