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

Example:

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

After the quick-fix is applied:

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