Reports calls to non-generic-array manipulation methods like Arrays.fill() with mismatched argument types.
Such calls don't do anything useful and are likely to be mistakes.
Example:
int foo(String[] strings) {
return Arrays.binarySearch(strings, 1);
}