mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 06:39:38 +07:00
9 lines
141 B
Java
9 lines
141 B
Java
// "Invert If Condition" "true"
|
|
class A {
|
|
public void foo() {
|
|
<caret>if (c) {
|
|
a();
|
|
b();
|
|
}
|
|
}
|
|
} |