chore: bump scalafmt to 3.9.9 (#2047)

This commit is contained in:
He-Pin(kerr) 2025-08-23 17:34:23 +08:00 committed by GitHub
parent 0d1599ce0d
commit 952b3f29b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
version = 3.9.7
version = 3.9.9
runner.dialect = scala213
project.git = true
style = defaultWithAlign

View file

@ -398,7 +398,7 @@ final case class ManyVersionVector(versions: TreeMap[UniqueAddress, Long]) exten
else this
override def toString: String =
versions.map { case ((n, v)) => n.toString + " -> " + v }.mkString("VersionVector(", ", ", ")")
versions.map { case (n, v) => n.toString + " -> " + v }.mkString("VersionVector(", ", ", ")")
/** INTERNAL API */
@InternalApi override private[pekko] def estimatedSize: Int =

View file

@ -494,7 +494,7 @@ object MultiJvmPlugin extends AutoPlugin {
val hosts = classesHostsJavas.map(_._2)
// TODO move this out, maybe to the hosts string as well?
val syncProcesses = classesHostsJavas.map {
case ((testClass, hostAndUser, java)) =>
case (testClass, hostAndUser, java) =>
(testClass + " sync", Jvm.syncJar(testJar, hostAndUser, targetDir, log))
}
val syncResult = processExitCodes(name, syncProcesses, log)