!555 修复ObjectUtil.hasNull(Object... objs)在处理null时有bug

Merge pull request !555 from Husky/v5-dev
This commit is contained in:
Looly 2022-03-03 09:18:16 +00:00 committed by Gitee
commit fe5af5dc08
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -122,7 +122,7 @@ public class ArrayUtil extends PrimitiveArrayUtil {
}
}
}
return false;
return array == null;
}
/**