Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -139,7 +139,7 @@ public boolean isSmallArrayOfPairs(Object[] args) {
final DynamicObject array = (DynamicObject) arg;
final Object store = Layouts.ARRAY.getStore(array);

if (store != null && store.getClass() != Object[].class) {
if (store == null || store.getClass() != Object[].class) {
return false;
}

0 comments on commit aa63b80

Please sign in to comment.