Skip to content

Commit

Permalink
Remove obsolete async call
Browse files Browse the repository at this point in the history
  • Loading branch information
jetspiking committed May 17, 2024
1 parent ef683e2 commit 6775fc3
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,7 @@ public void longClickedItem(Context context, Object object, Object holder) {
* Store the application data.
*/
public void storeData() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)
CompletableFuture.runAsync(this::triggerSave);
else
triggerSave();
triggerSave();
}

/**
Expand Down

0 comments on commit 6775fc3

Please sign in to comment.