We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d4599f commit 0258139Copy full SHA for 0258139
src/test/scala/tools/jackson/module/scala/deser/CreatorTest.scala
@@ -47,7 +47,7 @@ object CreatorTest
47
class AlternativeConstructor(val script: String, dummy: Int) {
48
@JsonCreator
49
def this(script: String) = {
50
- this(script, 0)
+ this(script, -1)
51
}
52
override def equals(o: Any): Boolean = o match {
53
case ac: AlternativeConstructor => script == ac.script
@@ -64,13 +64,13 @@ object CreatorTest
64
65
case class MultipleConstructors(script: String, dummy: Int) {
66
67
68
69
70
71
case class MultipleConstructorsAnn @JsonCreator()(script: String, dummy: Int) {
72
73
74
75
76
0 commit comments