mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 13:43:29 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
13 lines
279 B
Java
13 lines
279 B
Java
/*
|
|
Value is always false (s1 == null; line#9)
|
|
's1' was assigned (=; line#8)
|
|
Method 'trim' is externally annotated as 'non-null' (trim; line#8)
|
|
*/
|
|
class Test {
|
|
void test(String s) {
|
|
String s1 = s.trim();
|
|
if (<selection>s1 == null</selection>) {
|
|
|
|
}
|
|
}
|
|
} |