summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-19 14:14:22 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-19 14:14:22 +0000
commit9821f70bc7026b7c43297c3723d9ce856c9e5330 (patch)
tree698b92a72049d1a9c0de83dfb9f9d518ab6c81e8 /src/compiler
parentac849228490d5a0e2d3f048d649297d5c59b6ade (diff)
downloadscala-9821f70bc7026b7c43297c3723d9ce856c9e5330.tar.gz
scala-9821f70bc7026b7c43297c3723d9ce856c9e5330.tar.bz2
scala-9821f70bc7026b7c43297c3723d9ce856c9e5330.zip
First correction after the big jump: Scalac's s...
First correction after the big jump: Scalac's symtab.Definition should no longer refer to scala.Type.
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/Definitions.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/Definitions.scala b/src/compiler/scala/tools/nsc/symtab/Definitions.scala
index 36d34f76f1..6903f2b504 100644
--- a/src/compiler/scala/tools/nsc/symtab/Definitions.scala
+++ b/src/compiler/scala/tools/nsc/symtab/Definitions.scala
@@ -340,7 +340,7 @@ import Flags._;
SeqClass = getClass("scala.Seq");
ListClass = getClass("scala.List");
ArrayClass = getClass("scala.Array");
- TypeClass = getClass("scala.Type");
+ //TypeClass = getClass("scala.Type");
SerializableClass = getClass("java.io.Serializable");
PredefModule = getModule("scala.Predef");
ConsoleModule = getModule("scala.Console");