hide lambda suggestion if method of functional interface is generics (IDEA-141214)

This commit is contained in:
Anna Kozlova
2015-06-09 20:31:15 +03:00
parent a43e92b0f0
commit 2f9e7a7f99
3 changed files with 47 additions and 29 deletions
@@ -0,0 +1,10 @@
class Test {
@FunctionalInterface
interface GenericOperation {
<R> R get(R value);
}
public static GenericOperation build() {
return <caret>
}
}