Files
openide/java/java-tests/testData/codeInsight/editorActions/detectableIndents/withFullReformat.java
Rustam Vishnyakov 93cf83988f Fixed IDEA-231481 Detected file indent does not seem to be invalidated after the code is fully re-formatted
GitOrigin-RevId: 00b35b03924f0144f0cb2a4f36c6e9eaa2c416b7
2020-03-20 18:47:31 +00:00

9 lines
172 B
Java

public class Main {
public void main() {
try {
System.out.print("abc<caret>def");
} catch (java.lang.Exception exception) {
exception.printStackTrace();
}
}
}