mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 09:20:37 +07:00
GitOrigin-RevId: b411271e0d9d4670630f6a54dd7fac7bf1423a68
13 lines
198 B
Java
13 lines
198 B
Java
// "Remove 'for' statement" "true"
|
|
|
|
public class Test {
|
|
|
|
public static int[] init(int n) {
|
|
int[] data = new int[n];
|
|
int i = 0;
|
|
while (i < 3) {
|
|
i++;
|
|
}
|
|
return data;
|
|
}
|
|
} |