[java-inspections] IDEA-298539 Fix parameter can be local quick-fix undo

Also makes it so refactoring isn't called in write action and won't cause deadlocks.

GitOrigin-RevId: 204fd9f9a0b2e942b1c9eb56b3d9938b2666d123
This commit is contained in:
Bart van Helvert
2022-07-26 14:23:39 +02:00
committed by intellij-monorepo-bot
parent acf71179ed
commit 57b3e68b1b
13 changed files with 63 additions and 58 deletions

View File

@@ -4,8 +4,8 @@ class Foo {
class Bar {
void test() {
int x = 2; // could be local
System.out.println(x);
int x = 2; // could be local
System.out.println(x);
}
}
}