mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
Corrected situation when we complete statement with empty code block and code style is set to keep simple instructions in one line
7 lines
105 B
Java
7 lines
105 B
Java
class Test {
|
|
Test(boolean condition) {
|
|
if (condition) {
|
|
<caret>
|
|
}
|
|
}
|
|
} |