mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
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>) {
|
|
|
|
}
|
|
}
|
|
} |