Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/extractIfCondition/beforeOrAllInParens.java
Tagir Valeev 859e31030e [java-intentions] ExtractIfConditionAction: support parentheses
GitOrigin-RevId: db60cf3bceed34ef952f84ca6ef68e7cff49a97d
2023-07-07 15:57:59 +00:00

8 lines
176 B
Java

// "Extract if (a)" "true-preview"
class TestThreadInspection {
void f(boolean a, boolean b, boolean c){
if ((<caret>a || b)) {
System.out.println("c");
}
}
}