Skip to content

Instantly share code, notes, and snippets.

@rlubke
Created October 19, 2021 04:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rlubke/53d5b3084784b7aad0983d0354ff6676 to your computer and use it in GitHub Desktop.
Save rlubke/53d5b3084784b7aad0983d0354ff6676 to your computer and use it in GitHub Desktop.
DELETE
@Delete
public void deleteCompletedTasks()
{
tasks.removeAll(Filters.equal(Task::getCompleted, true));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment