mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 06:39:38 +07:00
13 lines
255 B
Java
13 lines
255 B
Java
// "Fix all 'Constant conditions & exceptions' problems" "true"
|
|
public class Test {
|
|
void foo() {
|
|
int k = 0;
|
|
int i = 0;
|
|
if (<caret>i == k) {}
|
|
if (i == k) {}
|
|
if (i == k) {}
|
|
if (i == k) {}
|
|
if (i == k) {}
|
|
if (i == k) {}
|
|
}
|
|
} |