mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
7 lines
194 B
Java
7 lines
194 B
Java
class Fun {
|
|
void smthComplex() {
|
|
Object n = new Integer(1);
|
|
String result = ((<warning descr="Condition 'n != null' is always 'true'">n != null</warning>) ? n.toString() : "");
|
|
}
|
|
|
|
} |