summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschinz <schinz@epfl.ch>2005-03-08 10:08:54 +0000
committerschinz <schinz@epfl.ch>2005-03-08 10:08:54 +0000
commite8b87c676d140b369922b3b43313d8c09f6c1e67 (patch)
tree1e9256adececc98207c1d36fda4cce76032eb4a4
parent2f69f39176bec1a8bfc0b53fcc3ce1be640d6def (diff)
downloadscala-e8b87c676d140b369922b3b43313d8c09f6c1e67.tar.gz
scala-e8b87c676d140b369922b3b43313d8c09f6c1e67.tar.bz2
scala-e8b87c676d140b369922b3b43313d8c09f6c1e67.zip
- removed BasicType class
-rw-r--r--sources/scala/runtime/types/BasicType.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/sources/scala/runtime/types/BasicType.java b/sources/scala/runtime/types/BasicType.java
deleted file mode 100644
index 3b3a4ab433..0000000000
--- a/sources/scala/runtime/types/BasicType.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2003, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-// $Id$
-
-package scala.runtime.types;
-
-import scala.Type;
-
-/**
- * Abstract superclass for all basic types.
- *
- * @author Michel Schinz
- * @version 1.0
- */
-
-abstract public class BasicType extends Type {
- public boolean isInstance(Object o) {
- throw new UnsupportedOperationException();
- }
- public boolean isSubType(Type that) {
- return false; // TODO
- }
- public boolean isSameType(Type that) {
- return this == that;
- }
-}