mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
11 lines
182 B
Java
11 lines
182 B
Java
// "Invert 'if' condition" "true"
|
|
class A {
|
|
public void foo(boolean c) {
|
|
<caret>if (c) {
|
|
foo();
|
|
}
|
|
else {
|
|
return;
|
|
}
|
|
}
|
|
} |