File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/build/src/main/scala/scala/build Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ object ConsoleBloopBuildClient {
174
174
val prefix = diagnosticPrefix(diag.getSeverity)
175
175
176
176
val line = (diag.getRange.getStart.getLine + 1 ).toString + " :"
177
- val col = (diag.getRange.getStart.getCharacter + 1 ).toString + " : "
177
+ val col = (diag.getRange.getStart.getCharacter + 1 ).toString
178
178
val msgIt = diag.getMessage.linesIterator
179
179
180
180
val path0 = path match {
@@ -183,7 +183,7 @@ object ConsoleBloopBuildClient {
183
183
" ." + File .separator + p.relativeTo(Os .pwd).toString
184
184
case Right (p) => p.toString
185
185
}
186
- logger.error(s " $prefix$path0: $line$col" + ( if (msgIt.hasNext) " " + msgIt.next() else " " ) )
186
+ logger.error(s " $prefix$path0: $line$col" )
187
187
for (line <- msgIt)
188
188
logger.error(prefix + line)
189
189
val codeOpt = {
You can’t perform that action at this time.
0 commit comments