mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-30 23:37:04 +07:00
774401fb2f
GitOrigin-RevId: 9582978807c159f8302a1781a5f3388fb0130ad9
10 lines
162 B
Java
10 lines
162 B
Java
// "Extract if (b)" "true"
|
|
class MyTest {
|
|
|
|
void foo(boolean a, boolean b, boolean c, boolean d) {
|
|
if (b)
|
|
if (a && (c || d)) {
|
|
|
|
}
|
|
}
|
|
} |