summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/classfile/CLRPackageParser.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/symtab/classfile/CLRPackageParser.java')
-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