aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/repl/REPL.scala
diff options
context:
space:
mode:
authorKazuyoshi Kato <kato.kazuyoshi@gmail.com>2016-06-24 08:17:35 -0700
committerKazuyoshi Kato <kato.kazuyoshi@gmail.com>2016-07-27 06:54:27 -0700
commit8e55954654596c965f220154a5f557e49463fa81 (patch)
treebfb378355fda438709c35da75b4758d387b586ad /src/dotty/tools/dotc/repl/REPL.scala
parent5ffce6e910f4cc1fced15824df86a9524be81681 (diff)
downloaddotty-8e55954654596c965f220154a5f557e49463fa81.tar.gz
dotty-8e55954654596c965f220154a5f557e49463fa81.tar.bz2
dotty-8e55954654596c965f220154a5f557e49463fa81.zip
Fixes #1316: Remove JLine
Dotty uses ammonite.terminal since April (53bd25f) which replaces JLine. There is no reason to keep it anymore.
Diffstat (limited to 'src/dotty/tools/dotc/repl/REPL.scala')
-rw-r--r--src/dotty/tools/dotc/repl/REPL.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/repl/REPL.scala b/src/dotty/tools/dotc/repl/REPL.scala
index cca5e8d6b..dd20852a4 100644
--- a/src/dotty/tools/dotc/repl/REPL.scala
+++ b/src/dotty/tools/dotc/repl/REPL.scala
@@ -90,7 +90,7 @@ object REPL {
def input(in: Interpreter)(implicit ctx: Context): InteractiveReader = {
val emacsShell = System.getProperty("env.emacs", "") != ""
//println("emacsShell="+emacsShell) //debug
- if (ctx.settings.Xnojline.value || emacsShell) new SimpleReader()
+ if (emacsShell) new SimpleReader()
else InteractiveReader.createDefault(in)
}