blob: fb1921f60a1f800993c27dc2841701583c6496f1 [file] [log] [blame]
package com.siyeh.igfixes.performance.replace_with_system_arraycopy;
class Simple {
void foo(String[] source, Object[] target) {
System.arraycopy(source, 0, target, 0, 5);
}
}