(String userId)
| 36 | } |
| 37 | |
| 38 | public void deleteUser(String userId) throws UserNotFoundException { |
| 39 | User user = mapper.load(User.class, userId); |
| 40 | if ( user == null ) { |
| 41 | throw new UserNotFoundException(userId); |
| 42 | } |
| 43 | mapper.delete(user); |
| 44 | } |
| 45 | } |
nothing calls this directly
no outgoing calls
no test coverage detected