Fix output

This commit is contained in:
Alexandre Archambault 2016-08-15 16:14:25 +02:00
parent fac264f7b7
commit ad4ba45be4
No known key found for this signature in database
GPG Key ID: 14640A6839C263A9
1 changed files with 4 additions and 4 deletions

View File

@ -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")
}
}
}