File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/test/kotlin/com/fasterxml/jackson/module/kotlin/test/github Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package com.fasterxml.jackson.module.kotlin.test.github
2
2
3
3
import com.fasterxml.jackson.core.JsonGenerator
4
4
import com.fasterxml.jackson.databind.ObjectMapper
5
+ import com.fasterxml.jackson.databind.ObjectWriter
5
6
import com.fasterxml.jackson.databind.SerializerProvider
6
7
import com.fasterxml.jackson.databind.json.JsonMapper
7
8
import com.fasterxml.jackson.databind.module.SimpleModule
@@ -17,7 +18,7 @@ import kotlin.test.assertEquals
17
18
18
19
class Github464 {
19
20
class UnboxTest {
20
- val writer = jacksonObjectMapper().writerWithDefaultPrettyPrinter()
21
+ private val writer: ObjectWriter = jacksonObjectMapper().writerWithDefaultPrettyPrinter()
21
22
22
23
@JvmInline
23
24
value class ValueClass (val value : Int )
You can’t perform that action at this time.
0 commit comments