Skip to content

Commit

Permalink
Fixed semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Mar 24, 2023
1 parent e562fb6 commit d26c380
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void onResourceReady(@NonNull Drawable resource, @Nullable Transition<? s
this.view.setImageDrawable(resource);

// trigger the callback out of this target
callback.onComplete(true, resource, this::clear)
callback.onComplete(true, resource, this::clear);
});
}

Expand Down

0 comments on commit d26c380

Please sign in to comment.