mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-30 15:53:32 +07:00
774401fb2f
GitOrigin-RevId: 9582978807c159f8302a1781a5f3388fb0130ad9
9 lines
149 B
Java
9 lines
149 B
Java
// "Extract if (b)" "true"
|
|
class MyTest {
|
|
|
|
void foo(boolean a, boolean b, boolean c, boolean d) {
|
|
if (a && <caret>b && (c || d)) {
|
|
|
|
}
|
|
}
|
|
} |