Skip to content

Commit

Permalink
Copybara import of the project:
Browse files Browse the repository at this point in the history
--
621e2d5 by Olivier Payen <[email protected]>:

Mark RequestListener.onLoadFailed() model parameter as Nullable

PiperOrigin-RevId: 306967899
  • Loading branch information
sjudd authored and glide-copybara-robot committed Apr 17, 2020
1 parent f9095c6 commit 00d8fce
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,7 @@ public interface RequestListener<R> {
* Target#onLoadFailed(Drawable)} to be called on {@code target}.
*/
boolean onLoadFailed(
@Nullable GlideException e,
@Nullable Object model,
Target<R> target,
boolean isFirstResource);
@Nullable GlideException e, Object model, Target<R> target, boolean isFirstResource);

/**
* Called when a load completes successfully, immediately before {@link
Expand Down

0 comments on commit 00d8fce

Please sign in to comment.