mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-31 07:20:25 +07:00
2f3d180fbd
allow JavaWithIfExpressionSurrounder just after else keywords
11 lines
135 B
Java
11 lines
135 B
Java
class Test {
|
|
boolean foo() {
|
|
return true;
|
|
}
|
|
|
|
void bar() {
|
|
if (true) {
|
|
}
|
|
else <selection>foo()</selection>
|
|
}
|
|
} |