mirror of
https://github.com/sbt/sbt.git
synced 2026-09-06 09:37:02 +02:00
Fix output
This commit is contained in:
@@ -96,16 +96,16 @@ object ResolutionError {
|
||||
.toVector
|
||||
.sortBy(_._1)
|
||||
|
||||
val b = new StringBuilder
|
||||
val b = new ArrayBuffer[String]
|
||||
|
||||
for ((type0, errors) <- groupedArtifactErrors) {
|
||||
b ++= s"${errors.size} $type0"
|
||||
b += s"${errors.size} $type0"
|
||||
if (verbose)
|
||||
for (err <- errors)
|
||||
b ++= " " + err
|
||||
b += " " + err
|
||||
}
|
||||
|
||||
b.result()
|
||||
b.mkString("\n")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user