The whole point of using Optional/Maybe is to prevent the possibility of accidemtally creating nulls. If you don't make mistakes, then nullability is not a problem. If you do make mistakes, then a class that only helps when you don't make mistakes is basically useless.
This also has significant impact for serialization/de serialization - a classic place where you get unexpected nulls, that Java Optional/Maybe don't help with at all.
Since they plan to have null-restricted types, then I don't see any issue.
> plan to
Well wasn't that the argument above, that the stuff they added so far isn't proper at least in part because they didn't fix that problem yet?