mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
14 lines
315 B
Java
14 lines
315 B
Java
// "Extract if (a)" "true-preview"
|
|
class TestThreadInspection {
|
|
void f(boolean a, boolean b, boolean c){
|
|
if (a) {
|
|
if (b) {
|
|
System.out.println("a&b");
|
|
} else {
|
|
System.out.println("c");
|
|
}
|
|
} else {
|
|
System.out.println("c");
|
|
}
|
|
}
|
|
} |