mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 07:15:01 +07:00
10 lines
237 B
Java
10 lines
237 B
Java
import java.io.*;
|
|
|
|
class Foo {
|
|
public void foo(Object a, String b) {
|
|
String c = a + b;
|
|
if (<warning descr="Condition 'c == null' is always 'false'">c == null</warning>) {
|
|
System.out.println("Can't be!");
|
|
}
|
|
}
|
|
} |