IDEA-124317 super class method is not shown in basic and smart completion, while accessible

This commit is contained in:
peter
2014-05-02 18:42:05 +02:00
parent a655925043
commit 676f08abb5
4 changed files with 30 additions and 1 deletions
@@ -0,0 +1,11 @@
class Zoo extends foo.Super {
void foo() {
new Runnable() {
@Override
public void run() {
myStr<caret>
}
};
}
}
@@ -0,0 +1,11 @@
class Zoo extends foo.Super {
void foo() {
new Runnable() {
@Override
public void run() {
myString<caret>
}
};
}
}