mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
12 lines
250 B
Java
12 lines
250 B
Java
import java.util.function.Function;
|
|
|
|
class InlineFromLambda {
|
|
private static Function<String, Object> func(int p) {
|
|
return s -> new Co<caret>mmand(s, p);
|
|
}
|
|
|
|
private static class Command {
|
|
public Command(String name, int p) {
|
|
}
|
|
}
|
|
} |