Skip to content

Commit 397f0ce

Browse files
committedFeb 25, 2019
minor fixes
1 parent 94184a9 commit 397f0ce

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed
 

‎src/main/java/com/example/cars/controllers/CarController.java

+7-10
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ public List<Car> getAllCars() {
5050
public ResponseEntity<Car> getCarsById(@PathVariable(value = "id") Long carId)
5151
throws ResourceNotFoundException {
5252

53-
Car car = carRepository
54-
.findById(carId)
53+
Car car = carRepository.findById(carId)
5554
.orElseThrow(() -> new ResourceNotFoundException("Car " + carId + " not found"));
5655
return ResponseEntity.ok().body(car);
5756
}
@@ -82,10 +81,9 @@ public ResponseEntity<Car> updateCar(
8281
@PathVariable(value = "id") Long carId, @Valid @RequestBody Car carDetails)
8382
throws ResourceNotFoundException {
8483

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"));
8987

9088
car.setCarName(carDetails.getCarName());
9189
car.setDoors(carDetails.getDoors());
@@ -104,10 +102,9 @@ public ResponseEntity<Car> updateCar(
104102
@ApiOperation(value = "Handles the deletion of a single car by its id.", response = Car.class)
105103
@DeleteMapping("/car/{id}") // DELETE Method for Delete operation
106104
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"));
111108

112109
carRepository.delete(car);
113110
Map<String, Boolean> response = new HashMap<>();

0 commit comments

Comments
 (0)