mirror of https://github.com/sbt/sbt.git
Remove unneeded string interpolation
This commit is contained in:
parent
e17f8f27d2
commit
6da876cbe7
|
|
@ -110,7 +110,7 @@ private[sbt] final class TaskProgress
|
||||||
|
|
||||||
private[this] def deleteConsoleLines(n: Int): Unit = {
|
private[this] def deleteConsoleLines(n: Int): Unit = {
|
||||||
(1 to n) foreach { _ =>
|
(1 to n) foreach { _ =>
|
||||||
console.println(s"$DeleteLine")
|
console.println(DeleteLine)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue