summaryrefslogtreecommitdiff
path: root/sources/scalac
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2005-10-04 09:34:15 +0000
committermihaylov <mihaylov@epfl.ch>2005-10-04 09:34:15 +0000
commit4b24405a5115bd936a1f88308d8a02a9e07aa53b (patch)
tree224b5620209e0cb60856cb6cc4d50acf3b76cdc2 /sources/scalac
parent0e4a5a46d17c422a1b632107a47d98bb44dc7451 (diff)
downloadscala-4b24405a5115bd936a1f88308d8a02a9e07aa53b.tar.gz
scala-4b24405a5115bd936a1f88308d8a02a9e07aa53b.tar.bz2
scala-4b24405a5115bd936a1f88308d8a02a9e07aa53b.zip
Fixed a but in the handling of scala.dll
Diffstat (limited to 'sources/scalac')
-rw-r--r--sources/scalac/symtab/classfile/CLRTypes.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/sources/scalac/symtab/classfile/CLRTypes.java b/sources/scalac/symtab/classfile/CLRTypes.java
index 3ce4d8ceba..5dc0e031f9 100644
--- a/sources/scalac/symtab/classfile/CLRTypes.java
+++ b/sources/scalac/symtab/classfile/CLRTypes.java
@@ -94,11 +94,10 @@ public final class CLRTypes {
assemrefs, args.assemrefs.value);
Assembly mscorlib = findAssembly("mscorlib.dll", true);
Type.initMSCORLIB(mscorlib);
- findAssembly("scala.dll", false);
findAllAssemblies();
if (getType("scala.Int") == null) {
- abort("scala.dll");
+ findAssembly("scala.dll", true);
}
BYTE = getType("System.SByte");