aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/repl/InterpreterLoop.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-11-09 18:55:28 +0100
committerMartin Odersky <odersky@gmail.com>2016-12-01 13:55:12 +0100
commit34690395dd86c9e31eb38f73df35a5ebaf3b2c80 (patch)
tree6eeee5cf20dde2ff1bfd9e988db94838d2894b6f /compiler/src/dotty/tools/dotc/repl/InterpreterLoop.scala
parentf1151d658ade02d6e838ab11d9d9700a89762558 (diff)
downloaddotty-34690395dd86c9e31eb38f73df35a5ebaf3b2c80.tar.gz
dotty-34690395dd86c9e31eb38f73df35a5ebaf3b2c80.tar.bz2
dotty-34690395dd86c9e31eb38f73df35a5ebaf3b2c80.zip
Clean up imports
Honor the new scheme where any explicit import of a root import will disable the root import.
Diffstat (limited to 'compiler/src/dotty/tools/dotc/repl/InterpreterLoop.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/repl/InterpreterLoop.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/dotty/tools/dotc/repl/InterpreterLoop.scala b/compiler/src/dotty/tools/dotc/repl/InterpreterLoop.scala
index b3ac41c55..cfe8d892d 100644
--- a/compiler/src/dotty/tools/dotc/repl/InterpreterLoop.scala
+++ b/compiler/src/dotty/tools/dotc/repl/InterpreterLoop.scala
@@ -4,7 +4,7 @@ package repl
import java.io.{BufferedReader, File, FileReader, PrintWriter}
import java.io.IOException
-import java.lang.{ClassLoader, System}
+import java.lang.{ClassLoader, System, Thread}
import scala.concurrent.{Future, Await}
import scala.concurrent.duration.Duration
import reporting.Reporter