Skip to content

Commit

Permalink
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -110,7 +110,9 @@ public static boolean isSmallArrayOfPairs(Object[] args) {
return false;
}

if (PackedArrayStrategy.MAX_ELEMENTS > PackedArrayStrategy.MAX_ENTRIES) {
final Object[] store = (Object[]) array.getStore();

if (store.length > PackedArrayStrategy.MAX_ENTRIES) {
return false;
}

0 comments on commit b90754d

Please sign in to comment.