chore: bump scalafmt to 3.9.9 (#2047)
This commit is contained in:
parent
0d1599ce0d
commit
952b3f29b1
3 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
version = 3.9.7
|
version = 3.9.9
|
||||||
runner.dialect = scala213
|
runner.dialect = scala213
|
||||||
project.git = true
|
project.git = true
|
||||||
style = defaultWithAlign
|
style = defaultWithAlign
|
||||||
|
|
|
||||||
|
|
@ -398,7 +398,7 @@ final case class ManyVersionVector(versions: TreeMap[UniqueAddress, Long]) exten
|
||||||
else this
|
else this
|
||||||
|
|
||||||
override def toString: String =
|
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 */
|
/** INTERNAL API */
|
||||||
@InternalApi override private[pekko] def estimatedSize: Int =
|
@InternalApi override private[pekko] def estimatedSize: Int =
|
||||||
|
|
|
||||||
|
|
@ -494,7 +494,7 @@ object MultiJvmPlugin extends AutoPlugin {
|
||||||
val hosts = classesHostsJavas.map(_._2)
|
val hosts = classesHostsJavas.map(_._2)
|
||||||
// TODO move this out, maybe to the hosts string as well?
|
// TODO move this out, maybe to the hosts string as well?
|
||||||
val syncProcesses = classesHostsJavas.map {
|
val syncProcesses = classesHostsJavas.map {
|
||||||
case ((testClass, hostAndUser, java)) =>
|
case (testClass, hostAndUser, java) =>
|
||||||
(testClass + " sync", Jvm.syncJar(testJar, hostAndUser, targetDir, log))
|
(testClass + " sync", Jvm.syncJar(testJar, hostAndUser, targetDir, log))
|
||||||
}
|
}
|
||||||
val syncResult = processExitCodes(name, syncProcesses, log)
|
val syncResult = processExitCodes(name, syncProcesses, log)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue