mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 16:25:33 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
13 lines
268 B
Java
13 lines
268 B
Java
/*
|
|
Value is always false (s == null; line#9)
|
|
's' is known to be 'non-null' from line #7 (null == s; line#7)
|
|
*/
|
|
class Test {
|
|
void test(String s) {
|
|
if (null == s) return;
|
|
System.out.println(s.trim());
|
|
if (<selection>s == null</selection>) {
|
|
|
|
}
|
|
}
|
|
} |