mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
13 lines
251 B
Java
13 lines
251 B
Java
// "Fix all 'Unused declaration' problems in file" "false"
|
|
public class Test {
|
|
void f<caret>oo1() {
|
|
int k = 0;
|
|
int i = 0;
|
|
if (i == k) {}
|
|
if (i == k) {}
|
|
if (i == k) {}
|
|
if (i == k) {}
|
|
if (i == k) {}
|
|
if (i == k) {}
|
|
}
|
|
} |