mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
15 lines
310 B
Java
15 lines
310 B
Java
// "Replace with 'Objects.requireNonNull(Math.random() > 0.5 ? get(1) : get(2))'" "true-preview"
|
|
|
|
import java.util.List;
|
|
|
|
class MyClass {
|
|
void foo(String str) {}
|
|
|
|
void test() {
|
|
foo(Math.random() > 0.5 ? get(1) :<caret> get(2));
|
|
}
|
|
|
|
static String get(int x) {
|
|
return x > 0 ? "foo" : null;
|
|
}
|
|
} |