From 1416902b725307ac4e8abcff8e411ff70654971d Mon Sep 17 00:00:00 2001 From: adam Date: Fri, 3 Jun 2005 00:52:25 +0000 Subject: [PATCH] renamed Type.Array.arrayify to _initHelper darcs-hash:20050603005225-5007d-c268f473c75e4e52689b5c660b16e6406b5e4249.gz --- src/org/ibex/classgen/Type.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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