mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 13:15:25 +07:00
GitOrigin-RevId: b411271e0d9d4670630f6a54dd7fac7bf1423a68
11 lines
194 B
Java
11 lines
194 B
Java
// "Remove 'for' statement" "true"
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
public class Test {
|
|
|
|
public static int[] init(int n) {
|
|
int[] data = new int[n];
|
|
return data;
|
|
}
|
|
} |