Skip to content

Commit a06acf3

Browse files
authored
remove unnecessary s"
1 parent 384782c commit a06acf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rules/src/main/scala/fix/AddLambdaParamParentheses.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ class AddLambdaParamParentheses extends SyntacticRule("AddLambdaParamParentheses
1414
Patch.empty
1515
} else {
1616
Seq(
17-
Patch.addLeft(param, s"("),
18-
Patch.addRight(param, s")")
17+
Patch.addLeft(param, "("),
18+
Patch.addRight(param, ")")
1919
).asPatch
2020
}
2121
}.asPatch

0 commit comments

Comments
 (0)