mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
11 lines
253 B
Java
11 lines
253 B
Java
// "Replace lambda expression with 'Function.identity()'" "false"
|
|
import java.util.function.Function;
|
|
|
|
public class Main {
|
|
void m(Function<String, String> f) {
|
|
n(f, o <caret>-> o);
|
|
}
|
|
|
|
<T> void n(Function<T, T> f1, Function<T, Object> f2) {}
|
|
}
|