@@ -50,8 +50,7 @@ public List<Car> getAllCars() {
50
50
public ResponseEntity <Car > getCarsById (@ PathVariable (value = "id" ) Long carId )
51
51
throws ResourceNotFoundException {
52
52
53
- Car car = carRepository
54
- .findById (carId )
53
+ Car car = carRepository .findById (carId )
55
54
.orElseThrow (() -> new ResourceNotFoundException ("Car " + carId + " not found" ));
56
55
return ResponseEntity .ok ().body (car );
57
56
}
@@ -82,10 +81,9 @@ public ResponseEntity<Car> updateCar(
82
81
@ PathVariable (value = "id" ) Long carId , @ Valid @ RequestBody Car carDetails )
83
82
throws ResourceNotFoundException {
84
83
85
- Car car =
86
- carRepository
87
- .findById (carId )
88
- .orElseThrow (() -> new ResourceNotFoundException ("Car " + carId + " not found" ));
84
+ Car car = carRepository
85
+ .findById (carId )
86
+ .orElseThrow (() -> new ResourceNotFoundException ("Car " + carId + " not found" ));
89
87
90
88
car .setCarName (carDetails .getCarName ());
91
89
car .setDoors (carDetails .getDoors ());
@@ -104,10 +102,9 @@ public ResponseEntity<Car> updateCar(
104
102
@ ApiOperation (value = "Handles the deletion of a single car by its id." , response = Car .class )
105
103
@ DeleteMapping ("/car/{id}" ) // DELETE Method for Delete operation
106
104
public Map <String , Boolean > deleteCar (@ PathVariable (value = "id" ) Long carId ) throws Exception {
107
- Car car =
108
- carRepository
109
- .findById (carId )
110
- .orElseThrow (() -> new ResourceNotFoundException ("Car " + carId + " not found" ));
105
+ Car car = carRepository
106
+ .findById (carId )
107
+ .orElseThrow (() -> new ResourceNotFoundException ("Car " + carId + " not found" ));
111
108
112
109
carRepository .delete (car );
113
110
Map <String , Boolean > response = new HashMap <>();
0 commit comments