File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
scala-2/io/cucumber/scala
scala-3/io/cucumber/scala Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ private[scala] trait StepDsl extends BaseScalaDsl {
46
46
def apply (fun : Fun0 ): Unit = {
47
47
register() {
48
48
case Nil => fun.f()
49
- case _ =>
49
+ case _ =>
50
50
throw new IncorrectStepDefinitionException ()
51
51
}
52
52
}
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ private[scala] trait StepDsl extends BaseScalaDsl {
14
14
def apply (f : => Any ): Unit = {
15
15
register() {
16
16
case Nil => f
17
- case _ =>
17
+ case _ =>
18
18
throw new IncorrectStepDefinitionException ()
19
19
}
20
20
}
@@ -23,7 +23,7 @@ private[scala] trait StepDsl extends BaseScalaDsl {
23
23
def apply (fun : () => Any ): Unit = {
24
24
register() {
25
25
case Nil => fun.apply()
26
- case _ =>
26
+ case _ =>
27
27
throw new IncorrectStepDefinitionException ()
28
28
}
29
29
}
You can’t perform that action at this time.
0 commit comments