From 61c79c5fd88e1017446c804adcafde230f4d90e8 Mon Sep 17 00:00:00 2001 From: adam Date: Fri, 3 Jun 2005 03:38:23 +0000 Subject: [PATCH] bugfix; removed isValidDescriptorName(); it wasn't doing anything darcs-hash:20050603033823-5007d-3f4993d261e5a7818f9d3f754fc4a10f9df59b24.gz --- src/org/ibex/classgen/Type.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/org/ibex/classgen/Type.java b/src/org/ibex/classgen/Type.java index 47494ae..8d91aeb 100644 --- a/src/org/ibex/classgen/Type.java +++ b/src/org/ibex/classgen/Type.java @@ -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; } -- 1.7.10.4