summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/InterpreterLoop.scala
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-05-24 10:21:44 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-05-24 10:21:44 +0000
commit9e7a08fba2b9d103d50a006c23f20a83881d3b6b (patch)
tree79ea46cbd51b3d32e0f16e93814c83e3e0451e90 /src/compiler/scala/tools/nsc/InterpreterLoop.scala
parentdc2ea7ccd5d2806104ba33286ab5db49642c09da (diff)
downloadscala-9e7a08fba2b9d103d50a006c23f20a83881d3b6b.tar.gz
scala-9e7a08fba2b9d103d50a006c23f20a83881d3b6b.tar.bz2
scala-9e7a08fba2b9d103d50a006c23f20a83881d3b6b.zip
Really fixed InterpreterLoop this time.
Diffstat (limited to 'src/compiler/scala/tools/nsc/InterpreterLoop.scala')
-rw-r--r--src/compiler/scala/tools/nsc/InterpreterLoop.scala4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/compiler/scala/tools/nsc/InterpreterLoop.scala b/src/compiler/scala/tools/nsc/InterpreterLoop.scala
index 01977ca822..8ba7a696b0 100644
--- a/src/compiler/scala/tools/nsc/InterpreterLoop.scala
+++ b/src/compiler/scala/tools/nsc/InterpreterLoop.scala
@@ -70,9 +70,7 @@ class InterpreterLoop(in0: Option[BufferedReader], out: PrintWriter) {
def createInterpreter() {
//closeInterpreter()
- interpreter = new Interpreter(settings, out) {
- override protected def parentClassLoader = parentClassLoader0
- }
+ interpreter = new Interpreter(settings, out)
interpreter.setContextClassLoader()
}