Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/replaceFromOfNullable/beforeGuavaNotNullLiteral.java

6 lines
123 B
Java

// "Replace with '.of()'" "true"
class A{
void test(){
com.google.common.base.Optional.fromNullable(1<caret>1);
}
}