mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
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:
committed by
intellij-monorepo-bot
parent
136459d1f0
commit
93cf83988f
+9
@@ -0,0 +1,9 @@
|
||||
public class Main {
|
||||
public void main() {
|
||||
try {
|
||||
System.out.print("abc<caret>def");
|
||||
} catch (java.lang.Exception exception) {
|
||||
exception.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public class Main {
|
||||
public void main() {
|
||||
try {
|
||||
System.out.print("abc" +
|
||||
"<caret>def");
|
||||
} catch (java.lang.Exception exception) {
|
||||
exception.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user