summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-10-29 18:03:52 +0000
committerpaltherr <paltherr@epfl.ch>2003-10-29 18:03:52 +0000
commit6e7a634da7506ac8da1c1e5e44754f8532f34184 (patch)
treeea9272dd9c359505ada071e3786d8a9faed66d21
parentea9add9f3ddfc9f2ba8692563e02f04b0975179f (diff)
downloadscala-6e7a634da7506ac8da1c1e5e44754f8532f34184.tar.gz
scala-6e7a634da7506ac8da1c1e5e44754f8532f34184.tar.bz2
scala-6e7a634da7506ac8da1c1e5e44754f8532f34184.zip
- Removed field RUNTIME_TYPE
-rw-r--r--sources/scalac/backend/Primitives.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/sources/scalac/backend/Primitives.java b/sources/scalac/backend/Primitives.java
index 54bf41e582..b12b97eb7d 100644
--- a/sources/scalac/backend/Primitives.java
+++ b/sources/scalac/backend/Primitives.java
@@ -113,7 +113,6 @@ public class Primitives {
private final Map/*<Symbol,Primitive>*/ primitives;
public final Symbol RUNTIME;
- public final Type RUNTIME_TYPE;
public final Symbol NEW_ZARRAY;
public final Symbol NEW_BARRAY;
@@ -211,8 +210,6 @@ public class Primitives {
this.definitions = global.definitions;
this.primitives = new HashMap();
this.RUNTIME = definitions.getModule(Names.scala_runtime_RunTime);
- this.RUNTIME_TYPE =
- Type.singleType(definitions.SCALARUNTIME_TYPE, RUNTIME);
this.NEW_ZARRAY = getUniqueTerm(RUNTIME, ZARRAY_N);
this.NEW_BARRAY = getUniqueTerm(RUNTIME, BARRAY_N);
this.NEW_SARRAY = getUniqueTerm(RUNTIME, SARRAY_N);