mirror of https://github.com/sbt/sbt.git
Don't add newline
This was intended to prevent lines from being interlaced but I'm not sure what if any effect it actually had.
This commit is contained in:
parent
db4878c786
commit
611449583a
|
|
@ -415,10 +415,6 @@ object Terminal {
|
|||
}
|
||||
private[this] val proxyPrintStream = new PrintStream(proxyOutputStream, true) {
|
||||
override def toString: String = s"proxyPrintStream($proxyOutputStream)"
|
||||
override def println(s: String): Unit = {
|
||||
proxyOutputStream.write(s"$s\n".getBytes("UTF-8"))
|
||||
proxyOutputStream.flush()
|
||||
}
|
||||
}
|
||||
private[this] lazy val isWindows =
|
||||
System.getProperty("os.name", "").toLowerCase(Locale.ENGLISH).indexOf("windows") >= 0
|
||||
|
|
|
|||
Loading…
Reference in New Issue