Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DiffTask javadoc: fix AsyncDiffUtil#calculateDiff method signature #280

Merged
merged 1 commit into from
Aug 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/src/main/java/com/xwray/groupie/DiffTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* in a background thread. This task will call {@link AsyncDiffUtil.Callback#onDispatchAsyncResult(Collection)}
* passing the new list just before dispatching the diff result to the provided
* {@link DiffUtil.Callback} so that the new list.
* <p>This task is executed via {@link AsyncDiffUtil#calculateDiff(Collection, DiffUtil.Callback, OnAsyncUpdateListener)}.
* <p>This task is executed via {@link AsyncDiffUtil#calculateDiff(Collection, DiffUtil.Callback, OnAsyncUpdateListener, boolean)}.
*/
class DiffTask extends AsyncTask<Void, Void, DiffUtil.DiffResult> {
@NonNull private final DiffUtil.Callback diffCallback;
Expand Down