mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
14 lines
321 B
Java
14 lines
321 B
Java
class Fun {
|
|
private void parseDeclarator(Object builder, boolean isTuple) {
|
|
if (!isTuple) {
|
|
return;
|
|
}
|
|
else {
|
|
if (smth() && <warning descr="Condition 'isTuple' is always 'true' when reached">isTuple</warning>) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
}
|
|
|
|
boolean smth() { return true; }
|
|
} |