Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithRequireNonNull/beforeMethodArgument2.java

11 lines
227 B
Java

// "Replace with 'Objects.requireNonNull(Math.random() > 0.5 ? null : "bar")'" "true"
import java.util.List;
class MyClass {
void foo(String str) {}
void test() {
foo(Math.random() > 0.5 ? null :<caret> "bar");
}
}