소스 검색

updated destroy method

Leon 5 년 전
부모
커밋
c4dfe6cefd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/main/java/com/zipcodewilmington/bakery/Controllers/BakerController.java

+ 1
- 1
src/main/java/com/zipcodewilmington/bakery/Controllers/BakerController.java 파일 보기

@@ -30,7 +30,7 @@ public class BakerController {
30 30
     }
31 31
 
32 32
     public ResponseEntity<Boolean> destroy(Long id) {
33
-        this.bakerRepository.findById(id).get();
33
+        this.bakerRepository.deleteById(id);
34 34
         return new ResponseEntity<>(true, HttpStatus.OK);
35 35
     }
36 36
 }