mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 09:50:57 +07:00
12 lines
235 B
Plaintext
12 lines
235 B
Plaintext
import java.util.function.Function;
|
|
|
|
class InlineFromLambda {
|
|
private static Function<String, Object> func(int p) {
|
|
return s -> {
|
|
final String name = s;
|
|
final int p1 = p;
|
|
return new Object();
|
|
};
|
|
}
|
|
|
|
} |