mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
empty method: do not warn if sync was added (IDEADEV-40820)
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<problems/>
|
||||
@@ -0,0 +1,4 @@
|
||||
package p1;
|
||||
public class Base {
|
||||
public void foo() {System.out.println("");}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package p2;
|
||||
import p1;
|
||||
public class Derived extends p1.Base {
|
||||
public synchronized void foo() {
|
||||
super.foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user