You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with eclipse external annotations on Optional I see the below signature @nonnull String @nonnull java.util.Optional.orElse(@nullable String other)
shouldn't this be @nullable String @nonnull java.util.Optional.orElse(@nullable String other)
instead, as the javadoc for orElse states that the return type can be null if in the input parameter is null
The text was updated successfully, but these errors were encountered:
with eclipse external annotations on Optional I see the below signature
@nonnull String @nonnull java.util.Optional.orElse(@nullable String other)
shouldn't this be
@nullable String @nonnull java.util.Optional.orElse(@nullable String other)
instead, as the javadoc for orElse states that the return type can be null if in the input parameter is null
The text was updated successfully, but these errors were encountered: