IDEA-246339 Do not suggest stream methods on method reference completion

GitOrigin-RevId: a72a1bda98f47056b893c31b1d0f894df3ced82a
This commit is contained in:
Peter Gromov
2020-07-22 15:58:44 +02:00
committed by intellij-monorepo-bot
parent b8dc92e383
commit 0cb5839b13
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class C {
void test(java.util.List<String> list) {
list::ma<caret>
}
}