Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ekigamba committed Aug 18, 2023
1 parent 0879113 commit a0d16ab
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,16 +191,6 @@ public void onClick(View v) {
}
}
});

recursive(1);
}

private void recursive(int count) {
if ((count % 100) == 0) {
Timber.i("This is call " + count);
}

recursive(count + 1);
}

private void fetchDroppedPoints(OnFinishedListener onFinishedListener) {
Expand Down

0 comments on commit a0d16ab

Please sign in to comment.