mirror of https://github.com/sbt/sbt.git
Fix output
This commit is contained in:
parent
fac264f7b7
commit
ad4ba45be4
|
|
@ -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")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue