mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 00:22:16 +07:00
11 lines
225 B
Java
11 lines
225 B
Java
// "Unwrap" "false"
|
|
import java.util.*;
|
|
|
|
public class Tests {
|
|
void test(Optional<String> optional, boolean b) {
|
|
if (b || optional.isPresent()) {
|
|
System.out.println(Optional.o<caret>f(optional.get()));
|
|
}
|
|
}
|
|
}
|