bugfix; removed isValidDescriptorName(); it wasn't doing anything
authoradam <adam@megacz.com>
Fri, 3 Jun 2005 03:38:23 +0000 (03:38 +0000)
committeradam <adam@megacz.com>
Fri, 3 Jun 2005 03:38:23 +0000 (03:38 +0000)
darcs-hash:20050603033823-5007d-3f4993d261e5a7818f9d3f754fc4a10f9df59b24.gz

src/org/ibex/classgen/Type.java

index 47494ae..8d91aeb 100644 (file)
@@ -84,7 +84,6 @@ public class Type {
 
         private static String _initHelper(String s) {
             if(!s.startsWith("L") || !s.endsWith(";")) s = "L" + s.replace('.', '/') + ";";
-            if(!validDescriptorString(s)) throw new IllegalArgumentException("invalid descriptor string");
             return s;
         }