Skip to content

Commit

Permalink
SyncAdaptor: Rename a method
Browse files Browse the repository at this point in the history
  • Loading branch information
murraycu committed Jan 10, 2019
1 parent 934e713 commit 3988a06
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private void requestMoreItemsAsync(final int count) {
new Callback<ZooniverseClient.SubjectsResponse>() {
@Override
public void onResponse(final Call<ZooniverseClient.SubjectsResponse> call, final retrofit2.Response<ZooniverseClient.SubjectsResponse> response) {
onQueryTaskFinished(response.body());
onSubjectsQueryTaskFinished(response.body());
mRequestMoreItemsTaskInProgress = false;
}

Expand Down Expand Up @@ -506,7 +506,7 @@ protected void onPostExecute(final boolean result) {
}
}

private void onQueryTaskFinished(@NonNull final ZooniverseClient.SubjectsResponse result) {
private void onSubjectsQueryTaskFinished(@NonNull final ZooniverseClient.SubjectsResponse result) {
mRequestMoreItemsTaskInProgress = false;

if (result == null) {
Expand Down

0 comments on commit 3988a06

Please sign in to comment.