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:
Ethan Atkins 2020-06-26 16:41:45 -07:00
parent db4878c786
commit 611449583a
1 changed files with 0 additions and 4 deletions

View File

@ -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