From: adam Date: Fri, 3 Jun 2005 00:52:25 +0000 (+0000) Subject: renamed Type.Array.arrayify to _initHelper X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=commitdiff_plain;h=1416902b725307ac4e8abcff8e411ff70654971d renamed Type.Array.arrayify to _initHelper darcs-hash:20050603005225-5007d-c268f473c75e4e52689b5c660b16e6406b5e4249.gz --- diff --git a/src/org/ibex/classgen/Type.java b/src/org/ibex/classgen/Type.java index 01276db..29d946a 100644 --- a/src/org/ibex/classgen/Type.java +++ b/src/org/ibex/classgen/Type.java @@ -95,10 +95,10 @@ public class Type { } public static class Array extends Object { - protected Array(Type t, int dim) { super(arrayify(t, dim)); } + protected Array(Type t, int dim) { super(_initHelper(t, dim)); } public Type.Array asArray() { return this; } public boolean isArray() { return true; } - private static String arrayify(Type t, int dim) { + private static String _initHelper(Type t, int dim) { StringBuffer sb = new StringBuffer(t.descriptor.length() + dim); for(int i=0;i