Make `sbt.internal.util.JLine` private to sbt package

It was private to `sbt.internal.util`, but it is used in sbt's codebase.
This commit is contained in:
Martin Duhem 2015-09-10 14:39:29 +02:00
parent 349254362d
commit aec925b57f
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ abstract class JLine extends LineReader {
reader.flush()
}
}
private object JLine {
private[sbt] object JLine {
private[this] val TerminalProperty = "jline.terminal"
fixTerminalProperty()