summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-06-13 02:19:38 +0000
committerPaul Phillips <paulp@improving.org>2011-06-13 02:19:38 +0000
commitf44c01eab212e3ab518880500953f485b49a2eee (patch)
treef1d1c8e0b497bad40dca3a48abe2607d7fd32b16 /src
parente0155ce582d5ff14c1f560e598ad74948cc0b35d (diff)
downloadscala-f44c01eab212e3ab518880500953f485b49a2eee.tar.gz
scala-f44c01eab212e3ab518880500953f485b49a2eee.tar.bz2
scala-f44c01eab212e3ab518880500953f485b49a2eee.zip
In the interests of unbreaking the ide, changin...
In the interests of unbreaking the ide, changing the reporter type in the repl to ConsoleReporter. No review.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/interpreter/IMain.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/interpreter/IMain.scala b/src/compiler/scala/tools/nsc/interpreter/IMain.scala
index 7ce91a2fe8..47e1aa49bb 100644
--- a/src/compiler/scala/tools/nsc/interpreter/IMain.scala
+++ b/src/compiler/scala/tools/nsc/interpreter/IMain.scala
@@ -76,7 +76,7 @@ class IMain(val settings: Settings, protected val out: JPrintWriter) extends Imp
lazy val formatting: Formatting = new Formatting {
val prompt = Properties.shellPromptString
}
- lazy val reporter: ReplReporter = new ReplReporter(this)
+ lazy val reporter: ConsoleReporter = new ReplReporter(this)
import formatting._
import reporter.{ printMessage, withoutTruncating }