mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
12 lines
334 B
Java
12 lines
334 B
Java
// "Replace Optional.isPresent() condition with functional style expression" "true"
|
|
|
|
import java.util.Optional;
|
|
|
|
public class Main {
|
|
public Optional<String> get() {
|
|
Optional<String> port = Optional.ofNullable(System.getProperty("abc");
|
|
Optional<String> result;
|
|
result = port.map(String::trim);
|
|
return result;
|
|
}
|
|
} |