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 committed by Dale Wijnand
parent ac8c3aefdd
commit 6eed17ad4e
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
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()