Skip to content

Commit

Permalink
Minor: parens
Browse files Browse the repository at this point in the history
  • Loading branch information
ebruchez committed Aug 1, 2024
1 parent 4e9aab2 commit 99ff0f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ trait FormRunnerActionsCommon {
val isPrevAllowed = Wizard.isPrevAllowed
dispatch(name = "fr-prev", targetId = Names.ViewComponent)
if (! isPrevAllowed)
throw new UnsupportedOperationException()
throw new UnsupportedOperationException
}

def tryWizardNext(params: ActionParams): ActionResult =
Expand All @@ -129,7 +129,7 @@ trait FormRunnerActionsCommon {
val isNextAllowed = Wizard.isNextAllowed
dispatch(name = "fr-next", targetId = Names.ViewComponent)
if (! isNextAllowed)
throw new UnsupportedOperationException()
throw new UnsupportedOperationException
}

// It makes sense to update all calculations as needed before saving data
Expand Down

0 comments on commit 99ff0f4

Please sign in to comment.