mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
10 lines
266 B
Java
10 lines
266 B
Java
import java.util.Collections;
|
|
import java.util.Map;
|
|
import java.util.Optional;
|
|
|
|
class StreamMainSimplified {
|
|
public static void main(Optional<Map.Entry<Integer, String>> first) {
|
|
String s1 = first.map((e) -> e.getV<caret>alue()).orElse("").substring(9);
|
|
}
|
|
|
|
} |