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
Change signature of RetryOperations.execute() regarding nullability
Due to lacking support in NullAway for the current arrangement, we are
(perhaps temporarily) changing the signature of the execute() method in
RetryOperations (and thus also in RetryTemplate)...
from: <R extends @nullable Object> R execute(Retryable<R> retryable);
to: <R> @nullable R execute(Retryable<? extends @nullable R> retryable);
Once uber/NullAway#1075 has been resolved, we
will consider switching back to the original signature.
See gh-34716
0 commit comments