From 88926733b6686d6b1e77254b35907d1dd0c5682e Mon Sep 17 00:00:00 2001 From: jhugunin Date: Tue, 7 Jan 2003 23:19:09 +0000 Subject: [PATCH] exposing unique array creation code --- .../eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5