Files
2023-07-07 15:57:59 +00:00

10 lines
227 B
Java

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