Skip to content

Instantly share code, notes, and snippets.

@rlubke
Created October 19, 2021 04:02
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/8bd755b0181db54a0d340bfba2cfc960 to your computer and use it in GitHub Desktop.
Save rlubke/8bd755b0181db54a0d340bfba2cfc960 to your computer and use it in GitHub Desktop.
DELETE /{id}
@Delete("{id}")
public void deleteTask(@PathVariable("id") String id)
{
tasks.removeById(id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment