mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
11 lines
255 B
Java
11 lines
255 B
Java
/*
|
|
Value is always false (null == s; line#9)
|
|
Parameter 's' is annotated as 'non-null' (@NotNull; line#8)
|
|
*/
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
class Test {
|
|
void test(@NotNull String s) {
|
|
if (<selection>null == s</selection>) return;
|
|
}
|
|
} |