Skip to content

Commit

Permalink
Run: scalafixAll dependency:[email protected]:scala…
Browse files Browse the repository at this point in the history
…-rewrites:0.1.5

Changes just one `x: _*` to `x.toSeq: _*`.
  • Loading branch information
kajmagnus committed Feb 7, 2025
1 parent 98ef61f commit 96646fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ case class SitePatchParser(context: TyContext) {
has type: ${classNameOf(x)}""")
}
})
Map(emailsAndPrefs: _*)
Map(emailsAndPrefs.toSeq: _*)
}) getOrElse Map.empty

val guests: Seq[Guest] = guestsJson.value.toVector.zipWithIndex map { case (json, index) =>
Expand Down

0 comments on commit 96646fd

Please sign in to comment.