correctly suggest protected methods after Xxx.super.

This commit is contained in:
peter
2011-01-26 18:52:53 +01:00
parent e56ee81ce2
commit f46268d4c8
4 changed files with 34 additions and 2 deletions
@@ -0,0 +1,9 @@
class BarImpl extends foo.Bar {
{
new Runnable() {
public void run() {
BarImpl.super.fo<caret>
}
};
}
}