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 207e81a commit 52a824aCopy full SHA for 52a824a
src/test/kotlin/tools/jackson/module/kotlin/test/github/Github56.kt
@@ -10,7 +10,10 @@ import kotlin.test.assertEquals
10
class TestGithub56 {
11
data class TestGalleryWidget_BAD(
12
val widgetReferenceId: String,
13
- @JsonUnwrapped var gallery: TestGallery
+ // IMPORTANT! Need _at least_ @get one (@param optional, not sufficient)
14
+ // (see https://github.com/FasterXML/jackson-databind/pull/5466 for change
15
+ // that made this necessary in 3.1 )
16
+ @get:JsonUnwrapped var gallery: TestGallery
17
)
18
19
data class TestGalleryWidget_GOOD(val widgetReferenceId: String) {
0 commit comments