summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2004-06-02 12:31:03 +0000
committermihaylov <mihaylov@epfl.ch>2004-06-02 12:31:03 +0000
commitb56ca3254d74c54adbbd80ccc22cb8fc2be85569 (patch)
tree84202515f67bc9dbb94a0325d90da8b7c6128a0d /sources
parent0cf6ebc16d4baa0c8c50f1d05d536def6403aaad (diff)
downloadscala-b56ca3254d74c54adbbd80ccc22cb8fc2be85569.tar.gz
scala-b56ca3254d74c54adbbd80ccc22cb8fc2be85569.tar.bz2
scala-b56ca3254d74c54adbbd80ccc22cb8fc2be85569.zip
- Removed the obviated scalalib.dll loading
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/symtab/classfile/CLRPackageParser.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/sources/scalac/symtab/classfile/CLRPackageParser.java b/sources/scalac/symtab/classfile/CLRPackageParser.java
index 22cef85b7f..0f6db82995 100644
--- a/sources/scalac/symtab/classfile/CLRPackageParser.java
+++ b/sources/scalac/symtab/classfile/CLRPackageParser.java
@@ -112,9 +112,6 @@ public class CLRPackageParser extends SymbolLoader {
SCALA_SYMTAB_ATTR = Type.GetType("scala.support.SymtabAttribute");
- //findAssembly("scalalib.dll");
- findAllAssemblies();
-
Type[] types = Type.EmptyTypes;
Iterator as = assemblies.iterator();
while (as.hasNext()) {
@@ -267,17 +264,6 @@ public class CLRPackageParser extends SymbolLoader {
}
}
-// private void testFind(String prefix) {
-// System.out.println("test find for " + prefix);
-// int i = findFirst(prefix);
-// if (i > 0)
-// System.out.println(types[i - 1]);
-// if (i < types.length)
-// System.out.println("> " + types[i]);
-// if (i < types.length - 1)
-// System.out.println(types[i + 1]);
-// }
-
/** Find the position of the first type whose name starts with
* the given prefix; return the length of the types array if no match
* is found so the result can be used to terminate loop conditions