mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
java parameter info: revert unsafe fix for IDEA-184821, add a test (IDEA-CR-28480)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import java.util.ArrayList;
|
||||
|
||||
class A{
|
||||
void foo(){
|
||||
new ArrayList<String>().stream().collect(toSe<caret>)
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import java.util.ArrayList;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
class A{
|
||||
void foo(){
|
||||
new ArrayList<String>().stream().collect(Collectors.toSet())<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user