Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/pushConditionInCall/after1.java
T

7 lines
167 B
Java

// "Push condition 'b' inside method call" "true"
class Foo {
void bar(boolean b){
String s = foo(b ? "true" : "false");
}
String foo(String p) {return p;}
}