[lombok] IDEA-309775 Add replace with lombok intention for synchronized methods

GitOrigin-RevId: 0c56c2af16d57425184a33eaa64fc5ae950d35a4
This commit is contained in:
Michail Plushnikov
2023-11-12 14:29:37 +01:00
committed by intellij-monorepo-bot
parent 09695a8b0c
commit db68ce26f8
6 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
public class JavaSynchronizedMethod {
public synchronized void <caret> doSomething() {
System.out.println("doSomething");
}
}

View File

@@ -0,0 +1,5 @@
public class JavaSynchronizedStaticMethod {
public synchronized static void <caret> doSomethingStatic() {
System.out.println("doSomethingStatic");
}
}