File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/scala/tools/jackson/module/scala/deser Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ object CreatorTest
47
47
class AlternativeConstructor (val script : String , dummy : Int ) {
48
48
@ JsonCreator
49
49
def this (script : String ) = {
50
- this (script, 0 )
50
+ this (script, - 1 )
51
51
}
52
52
override def equals (o : Any ): Boolean = o match {
53
53
case ac : AlternativeConstructor => script == ac.script
@@ -64,13 +64,13 @@ object CreatorTest
64
64
65
65
case class MultipleConstructors (script : String , dummy : Int ) {
66
66
def this (script : String ) = {
67
- this (script, 0 )
67
+ this (script, - 1 )
68
68
}
69
69
}
70
70
71
71
case class MultipleConstructorsAnn @ JsonCreator ()(script : String , dummy : Int ) {
72
72
def this (script : String ) = {
73
- this (script, 0 )
73
+ this (script, - 1 )
74
74
}
75
75
}
76
76
You can’t perform that action at this time.
0 commit comments