报告重写 synchronized 方法的非 synchronized 方法。
示例:
abstract class Base {
synchronized void foo() {
// ...
}
}
class Derived extends Base {
@Override
void foo() {
super.foo()
// ...
}
}
在这里,类 Bar 中的非 synchronized 方法 foo() 会重写 synchronized 方法。