bugfix; removed isValidDescriptorName(); it wasn't doing anything
[org.ibex.classgen.git] / 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;
         }