修改 Optional.map 方法的错误使用。
parent
a0b16afde2
commit
5d9e6ae5b3
|
@ -35,6 +35,6 @@ public abstract class ValidatableStringRecord implements IValueObject {
|
|||
}
|
||||
|
||||
public static String getValueOrNull(Optional<? extends ValidatableStringRecord> s) {
|
||||
return s.map(ValidatableStringRecord::value).orElse(null);
|
||||
return s.isPresent() ? s.get().value() : null;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue