When doing `Optional.ofNullable(something)` where ...
# announcements
r
When doing
Optional.ofNullable(something)
where something is
String?
the inferred type is
Optional<String?>
. Shouldn't the inferred type be
Optional<String>
?