mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
10 lines
221 B
Java
10 lines
221 B
Java
// "Replace with 'list != null ?:'" "true"
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
class A{
|
|
void test(@NotNull List l) {
|
|
final List list = null;
|
|
test(list != null ? list : <selection>null</selection>);
|
|
}
|
|
} |