mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
[lombok] IDEA-309775 Add replace with lombok intention for synchronized methods
GitOrigin-RevId: 0c56c2af16d57425184a33eaa64fc5ae950d35a4
This commit is contained in:
committed by
intellij-monorepo-bot
parent
09695a8b0c
commit
db68ce26f8
@@ -0,0 +1,5 @@
|
||||
public class JavaSynchronizedMethod {
|
||||
public synchronized void <caret> doSomething() {
|
||||
System.out.println("doSomething");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
public class JavaSynchronizedStaticMethod {
|
||||
public synchronized static void <caret> doSomethingStatic() {
|
||||
System.out.println("doSomethingStatic");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user