Reports java.util.Objects.equals() called on two arrays.
Calling java.util.Objects.equals() with array arguments compares identity and is equivalent to using ==.
Use Arrays.equals() to compare the contents of two arrays
or Arrays.deepEquals() to compare the contents of two multi-dimensional arrays.
New in 15