mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
8 lines
206 B
Java
8 lines
206 B
Java
// "Use 'fill' method without lambda" "false"
|
|
import java.util.Arrays;
|
|
|
|
class Test {
|
|
public void test(String[] arr, Object[] arr2) {
|
|
Arrays.setAll(String, x <caret>-> (String)(arr2[x]));
|
|
}
|
|
} |