IDEA-169780 Show parameter types in implement/override popup

This commit is contained in:
peter
2017-03-20 13:32:19 +01:00
parent 2ef1a4bffb
commit 09d6f71387
3 changed files with 6 additions and 4 deletions
@@ -1,7 +1,7 @@
class Super {
void foo1() {}
@Deprecated
void foo2() {}
void foo2(int x) {}
}
class Sub extends Super {