allow override method suggestions on method name only

This commit is contained in:
anna
2012-02-29 12:02:19 +01:00
parent c5da23c777
commit cf78075c97
2 changed files with 19 additions and 1 deletions
@@ -0,0 +1,6 @@
// "Override method 'foo'" "false"
class Test {
protected void foo(){<caret>}
}
class TImple extends Test {}