Remove unneeded string interpolation

This commit is contained in:
Ethan Atkins 2019-03-23 11:20:53 -07:00
parent e17f8f27d2
commit 6da876cbe7
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ private[sbt] final class TaskProgress
private[this] def deleteConsoleLines(n: Int): Unit = {
(1 to n) foreach { _ =>
console.println(s"$DeleteLine")
console.println(DeleteLine)
}
}
}