Files
openide/java/java-tests/testData/codeInsight/typing/indentRBrace_afterUndo.java
Dmitry Jemerov da2d0959ea API to execute typed handler postprocessing in a separate command
This allows to undo the formatting separately from the typing which
has triggered the formatting (IDEA-126243)
2018-04-18 19:06:08 +02:00

7 lines
85 B
Java

class Foo {
void m() {
if (true) {
System.out.println();
}<caret>
}
}