mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
17 lines
331 B
Java
17 lines
331 B
Java
// "Remove redundant initializer" "true-preview"
|
|
class A {
|
|
void testFor() {
|
|
if (true) {
|
|
read();
|
|
for(int i;; i++) {
|
|
i = 10;
|
|
System.out.println("Hello!");
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
private static int read() {
|
|
System.out.println();
|
|
return 0;
|
|
}} |