mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 14:30:49 +07:00
GitOrigin-RevId: ec42a9047ba63b0cbaddd8357d11ae2ed56ed6b6
8 lines
191 B
Java
8 lines
191 B
Java
import java.util.function.Predicate;
|
|
class Foo {
|
|
Predicate<String> test(int i) {
|
|
return switch (i) {
|
|
default -> <selection>String::isEmpty</selection>;
|
|
};
|
|
}
|
|
} |