don't suggest void methods in a context where some return value is expected (suggest on second invocation)

This commit is contained in:
peter
2011-04-06 19:21:15 +02:00
parent 1cf769a6dd
commit 8080667544
7 changed files with 38 additions and 8 deletions
@@ -8,4 +8,6 @@ public class Foo {
});
}
boolean fefefef() {}
}
@@ -0,0 +1,5 @@
public class Foo {
Object foo(){
return noti<caret>
}
}
@@ -0,0 +1,5 @@
public class Foo {
Object foo(){
return notify<caret>
}
}
@@ -1,5 +1,5 @@
class Foo {
boolean zoo(String s) {
return f<caret>
return f<caret>x
}
}