From: jhugunin Date: Tue, 7 Jan 2003 23:19:09 +0000 (+0000) Subject: exposing unique array creation code X-Git-Tag: V_1_1_b5~142 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=88926733b6686d6b1e77254b35907d1dd0c5682e;p=aspectj.git exposing unique array creation code --- diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java index 04bf05a8b..42aba123f 100644 --- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java +++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java @@ -256,7 +256,7 @@ private PackageBinding computePackageFrom(char[][] constantPoolName) { /* Used to guarantee array type identity. */ -ArrayBinding createArrayType(TypeBinding type, int dimensionCount) { +public ArrayBinding createArrayType(TypeBinding type, int dimensionCount) { // find the array binding cache for this dimension int dimIndex = dimensionCount - 1; int length = uniqueArrayBindings.length;