mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
missed usages of method references (IDEA-147828)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class Test{
|
||||
|
||||
public void main(java.util.List<String> list) {
|
||||
list.stream().filter(this::bar)
|
||||
}
|
||||
|
||||
public boolean bar() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user