mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
if client iterates through candidates of call resolve results and start inference for one of them, then cached top level session should be rejected if it corresponds to another candidate
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import java.util.function.Function;
|
||||
import java.util.*;
|
||||
|
||||
class Test {
|
||||
void m(Set<String> i) {
|
||||
final List<String> getters = new ArrayList<String>(ma<caret>p(i, new Function<String, String>() {
|
||||
@Override
|
||||
public String apply(String propertyName) {
|
||||
return propertyName;
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
public static <T,V> List<V> map(Iterable<? extends T> iterable, Function<T, V> mapping) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public static <T,V> List<V> map(Collection<? extends T> iterable, Function<T, V> mapping) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user