don't suggest methods to override/implement, it seems to be quite useless (IDEA-74784)

This commit is contained in:
peter
2011-09-26 13:50:55 +02:00
parent a2cfa28622
commit 1bdf394db8
3 changed files with 11 additions and 40 deletions
@@ -1,9 +1,12 @@
class Foo extends Super {
public void f<caret>oo() {
int aaa;
int bbb;
public int g<caret>oo() {
}
}
class Super {
public void foo() {
public int goo() {
}
}