mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
Fixes IDEA-350194 Inspection QuickFix results in compilation error GitOrigin-RevId: fb83bfcb4e4aef9dc87a5c84de6d08202dd52ec6
10 lines
323 B
Java
10 lines
323 B
Java
// "Replace lambda with method reference" "false"
|
|
import java.util.*;
|
|
import java.util.stream.*;
|
|
|
|
class Test {
|
|
void test() {
|
|
Set<String> lorem = Collections.unmodifiableSet(Stream.of("Lorem")
|
|
.collect(Collectors.toCollection(() -> new TreeSet<<caret>>())));
|
|
}
|
|
} |