Files
openide/java/java-tests/testData/codeInsight/completeStatement/BeforeIfRBrace.java
Denis Zhdanov 5fe8f15981 IDEA-65434 Ctrl+Shift+Enter bug in conditional blocks
Corrected situation when we complete statement with empty code block and code style is set to keep simple instructions in one line
2011-02-18 12:03:12 +03:00

5 lines
80 B
Java

class Test {
Test(boolean condition) {
if (condition<caret>)
}
}