IDEA-158416 Deprecated methods are not striked through in implements/override completion

This commit is contained in:
peter
2016-07-25 19:42:49 +02:00
parent 74e2f13697
commit 45b1fe1515
3 changed files with 19 additions and 0 deletions
@@ -0,0 +1,9 @@
class Super {
void foo1() {}
@Deprecated
void foo2() {}
}
class Sub extends Super {
foo<caret>
}