mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
10 lines
218 B
Java
10 lines
218 B
Java
// "Replace loop with 'Arrays.fill()' method call" "true"
|
|
|
|
class Test {
|
|
private void test2() {
|
|
int[][] arr = new int[10][];
|
|
for (<caret>int i = 0; i < arr.length; i++) {
|
|
arr[i] = new int[0];
|
|
}
|
|
}
|
|
} |