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
Repository.load() now returns @Nullable, and then some overriding classes apply @Nonnull, which is a violation of contract defined by the parent class.
Let's use Guava's Optional (and then Java8's in v2) instead.
The text was updated successfully, but these errors were encountered:
Repository.load()
now returns@Nullable
, and then some overriding classes apply@Nonnull
, which is a violation of contract defined by the parent class.Let's use Guava's
Optional
(and then Java8's in v2) instead.The text was updated successfully, but these errors were encountered: