From d0cf2996178b5c3ffc3a10c9bb6f50ab54651131 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 17 Oct 2023 16:59:32 +0200 Subject: [PATCH] Remove commented code --- .../profinit/education/flightlog/rest/FlightController.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rest/src/main/java/eu/profinit/education/flightlog/rest/FlightController.java b/rest/src/main/java/eu/profinit/education/flightlog/rest/FlightController.java index 1718617..7100b94 100644 --- a/rest/src/main/java/eu/profinit/education/flightlog/rest/FlightController.java +++ b/rest/src/main/java/eu/profinit/education/flightlog/rest/FlightController.java @@ -51,10 +51,6 @@ public class FlightController { @PostMapping("/flight/takeoff") public ResponseEntity takeoff(@RequestBody FlightTakeoffTo start) { - // TODO tutorial-4.2: Remove this commented-out code - // for (int i = 0; i <= 10; i++) { - // System.out.println("Just printing i:" + i); - // } log.debug("Start\n{}", start); flightService.takeoff(start);