mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 21:53:58 +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.of(optional.<caret>get()));
|
|
}
|
|
}
|
|
}
|