don't suggest two same-named fields from super classes when one overrides the other

This commit is contained in:
peter
2011-11-22 16:24:10 +01:00
parent d804c8a1dd
commit be287aed95
4 changed files with 26 additions and 29 deletions
@@ -0,0 +1,8 @@
interface Intf { Intf FOO = null; }
interface Intf2 extends Intf { Intf2 FOO = null; }
public class Bar implements Intf2 {
public static void fpp() {
F<caret>
}
}