Reports manual copying of array contents which can be replaced with System.arraycopy().

Example:


  for (int i = 0; i < array.length; i++) {
    newArray[i] = array[i];
  }

After the quick-fix is applied:


  System.arraycopy(array, 0, newArray, 0, array.length);