empty method: do not warn if sync was added (IDEADEV-40820)

This commit is contained in:
anna
2009-10-13 12:33:04 +04:00
parent 4636938bd8
commit e231832402
5 changed files with 32 additions and 4 deletions
@@ -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();
}
}