diff options
author | jhugunin <jhugunin> | 2003-01-07 23:19:09 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-01-07 23:19:09 +0000 |
commit | 88926733b6686d6b1e77254b35907d1dd0c5682e (patch) | |
tree | b10dbe0ceffc1fe4f4a7bcdedd4100e12181b7f3 /org.eclipse.jdt.core | |
parent | 52aa66ebc0ee454cf45b6ae6c77efb563e43e1d6 (diff) | |
download | aspectj-88926733b6686d6b1e77254b35907d1dd0c5682e.tar.gz aspectj-88926733b6686d6b1e77254b35907d1dd0c5682e.zip |
exposing unique array creation code
Diffstat (limited to 'org.eclipse.jdt.core')
-rw-r--r-- | org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java | 2 |
1 files changed, 1 insertions, 1 deletions
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; |