Skip to content

Commit 869774b

Browse files
vincenzobazmlachkar
authored andcommitted
Run formatter
1 parent 3492fed commit 869774b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scalafix-rules/src/main/scala/scalafix/internal/rule/RemoveUnused.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ class RemoveUnused(config: RemoveUnusedConfig)
5353
val isUnusedImport = mutable.Set.empty[Position]
5454
val isUnusedPattern = mutable.Set.empty[Position]
5555

56-
val unusedPatterExpr = raw"^pattern var .* in (value|method) .* is never used".r
56+
val unusedPatterExpr =
57+
raw"^pattern var .* in (value|method) .* is never used".r
5758

5859
doc.diagnostics.foreach { diagnostic =>
5960
if (config.imports && diagnostic.message == "Unused import") {

0 commit comments

Comments
 (0)