inline: delete @Override annotations if super method was deleted during inline (IDEA-152175)

This commit is contained in:
Anna.Kozlova
2016-04-27 11:10:23 +02:00
parent 8822f1e267
commit 66248de9e4
4 changed files with 40 additions and 0 deletions
@@ -0,0 +1,12 @@
class A {
void f<caret>oo() {}
}
class B extends A {
@Override
void foo() {}
void err() {
super.foo();
}
}