diff --git a/src/main/java/org/springframework/samples/petclinic/web/OwnerResource.java b/src/main/java/org/springframework/samples/petclinic/web/OwnerResource.java index 7024631ca..073cf80a9 100644 --- a/src/main/java/org/springframework/samples/petclinic/web/OwnerResource.java +++ b/src/main/java/org/springframework/samples/petclinic/web/OwnerResource.java @@ -109,7 +109,6 @@ public class OwnerResource { ownerModel.setTelephone(ownerRequest.getTelephone()); this.clinicService.saveOwner(ownerModel); return ownerModel; - // TODO: need to handle failure }