Skip to content

Commit 9aa88e5

Browse files
authored
Fixed to public
A `private` and `JvmStatic` function was broken in `Kotlin 1.5.x`. See GitHub Comment below for details. #533 (comment)
1 parent c9df362 commit 9aa88e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/com/fasterxml/jackson/module/kotlin/test/ParameterNameTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ class TestJacksonWithKotlin {
270270
) : TestFields {
271271
var factoryUsed: Boolean = false
272272
private companion object Named {
273-
@JvmStatic @JsonCreator private fun create(
273+
@JvmStatic @JsonCreator fun create(
274274
@JsonProperty("name") nameThing: String,
275275
@JsonProperty("age") age: Int,
276276
@JsonProperty("primaryAddress") primaryAddress: String,

0 commit comments

Comments
 (0)