mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
49 lines
1.1 KiB
Java
49 lines
1.1 KiB
Java
// "Fix all 'Null value for Optional type' problems in file" "true"
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Optional;
|
|
import java.util.OptionalInt;
|
|
|
|
public class Test {
|
|
void test(Optional<String> opt) {
|
|
if(opt.isEmpty()) {
|
|
System.out.println("null!");
|
|
}
|
|
}
|
|
|
|
void test2 (Optional<String> opt) {
|
|
/*comment*/
|
|
if(opt.isPresent()) {
|
|
System.out.println("null!");
|
|
}
|
|
}
|
|
|
|
void test3 (Optional<String> opt) {
|
|
// this case is ignored
|
|
if(opt == null || !opt.isPresent()) {
|
|
System.out.println("null or absent");
|
|
}
|
|
}
|
|
|
|
void test4 (Optional<String> opt) {
|
|
// this case is ignored as well
|
|
if(opt != null && opt.isPresent()) {
|
|
System.out.println("present");
|
|
}
|
|
}
|
|
|
|
void test5 (Optional<String> opt, Optional<String> opt2) {
|
|
// warn: different optionals used
|
|
if(opt.isPresent() && opt2.isPresent()) {
|
|
System.out.println("present");
|
|
}
|
|
}
|
|
|
|
void test6(Map<String, Optional<String>> map) {
|
|
Optional<String> result = map.get("key");
|
|
if (result == null) {
|
|
return;
|
|
}
|
|
System.out.println(result);
|
|
}
|
|
} |