Files
openide/java/java-tests/testData/codeInsight/completeStatement/NoSpaceAfterSemicolon.java
Denis Zhdanov dd5c166257 IDEA-69653 Complete Current Statement: Correct completion of 'init' section of 'for' statement
'Space after semicolon' code style property value is preserved during smart completion now
2011-05-16 12:15:11 +04:00

6 lines
92 B
Java

public class Foo {
void test(int i) {
for (int j = 1<caret>) {
}
}
}