Fixed IDEA-231481 Detected file indent does not seem to be invalidated after the code is fully re-formatted

GitOrigin-RevId: 00b35b03924f0144f0cb2a4f36c6e9eaa2c416b7
This commit is contained in:
Rustam Vishnyakov
2020-03-20 18:47:31 +00:00
committed by intellij-monorepo-bot
parent 136459d1f0
commit 93cf83988f
4 changed files with 96 additions and 23 deletions
@@ -0,0 +1,9 @@
public class Main {
public void main() {
try {
System.out.print("abc<caret>def");
} catch (java.lang.Exception exception) {
exception.printStackTrace();
}
}
}
@@ -0,0 +1,10 @@
public class Main {
public void main() {
try {
System.out.print("abc" +
"<caret>def");
} catch (java.lang.Exception exception) {
exception.printStackTrace();
}
}
}