summaryrefslogtreecommitdiff
path: root/src/scalap/scala/tools/scalap/Main.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-05-24 00:04:05 +0000
committerPaul Phillips <paulp@improving.org>2010-05-24 00:04:05 +0000
commit67a650205b9f18f58063883dc6150009f8bdaae3 (patch)
treeba8c28e5bfe10aabf1f2fb4e3ebc731097edf8ff /src/scalap/scala/tools/scalap/Main.scala
parenta33ef273d057c043d4129927f27230f54051ac88 (diff)
downloadscala-67a650205b9f18f58063883dc6150009f8bdaae3.tar.gz
scala-67a650205b9f18f58063883dc6150009f8bdaae3.tar.bz2
scala-67a650205b9f18f58063883dc6150009f8bdaae3.zip
Removed a few instances of redundant or dead co...
Removed a few instances of redundant or dead code, most of which was marked as waiting for a new starr which has long since arrived. No review.
Diffstat (limited to 'src/scalap/scala/tools/scalap/Main.scala')
-rw-r--r--src/scalap/scala/tools/scalap/Main.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/scalap/scala/tools/scalap/Main.scala b/src/scalap/scala/tools/scalap/Main.scala
index 54a3db54c9..88b6c53c46 100644
--- a/src/scalap/scala/tools/scalap/Main.scala
+++ b/src/scalap/scala/tools/scalap/Main.scala
@@ -126,9 +126,6 @@ object Main {
}
}
-
-
-
/**Executes scalap with the given arguments and classpath for the
* class denoted by <code>classname</code>.
*
@@ -157,18 +154,6 @@ object Main {
val clazz = new Classfile(reader)
processJavaClassFile(clazz)
}
- // if the class corresponds to the artificial class scala.All.
- // (to be removed after update of the STARR libraries)
- } else if (classname == "scala.All") {
- Console.println("package scala")
- Console.println("/* Deprecated. Use scala.Nothing instead. */")
- Console.println("sealed abstract class All")
- // if the class corresponds to the artificial class scala.AllRef.
- // (to be removed after update of the STARR libraries)
- } else if (classname == "scala.AllRef") {
- Console.println("package scala")
- Console.println("/* Deprecated. Use scala.Null instead. */")
- Console.println("sealed abstract class AllRef")
// if the class corresponds to the artificial class scala.Any.
// (see member list in class scala.tool.nsc.symtab.Definitions)
} else if (classname == "scala.Any") {