Provide some fixes for return statements within methods with the return type java.util.Optional.
For example
- return null will be transformed to return Optional.empty()
- return xxx will be transformed to return Optional.of(xxx) or return Optional.ofNullable(xxx)