MCPcopy Index your code
hub / github.com/aws-samples/eb-java-scorekeep / deleteMove

Method deleteMove

src/main/java/scorekeep/MoveModel.java:66–72  ·  view source on GitHub ↗
(String moveId)

Source from the content-addressed store, hash-verified

64 }
65
66 public void deleteMove(String moveId) throws MoveNotFoundException {
67 Move move = mapper.load(Move.class, moveId);
68 if ( move == null ) {
69 throw new MoveNotFoundException(moveId);
70 }
71 mapper.delete(move);
72 }
73}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected