mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 20:45:15 +07:00
11 lines
183 B
Java
11 lines
183 B
Java
// "Unwrap" "true"
|
|
import java.util.*;
|
|
|
|
public class Tests {
|
|
void test2(Optional<String> optional) {
|
|
if (optional.isPresent()) {
|
|
System.out.println(optional);
|
|
}
|
|
}
|
|
}
|