From b3a52913a032e62948dab79f7e7003db6200817a Mon Sep 17 00:00:00 2001 From: KKlochko Date: Fri, 1 Dec 2023 20:54:39 +0200 Subject: [PATCH] Remove the unused dependencies from IndicatorController. --- .../spring_rest_example/controllers/IndicatorController.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/space/kklochko/spring_rest_example/controllers/IndicatorController.java b/src/main/java/space/kklochko/spring_rest_example/controllers/IndicatorController.java index 4fa1053..447ccae 100644 --- a/src/main/java/space/kklochko/spring_rest_example/controllers/IndicatorController.java +++ b/src/main/java/space/kklochko/spring_rest_example/controllers/IndicatorController.java @@ -1,6 +1,5 @@ package space.kklochko.spring_rest_example.controllers; -import jakarta.persistence.Entity; import jakarta.persistence.EntityManager; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; @@ -9,8 +8,6 @@ import org.springframework.web.bind.annotation.*; import space.kklochko.spring_rest_example.db.repositories.IndicatorRepository; import space.kklochko.spring_rest_example.models.Indicator; -import java.sql.Timestamp; -import java.util.ArrayList; import java.util.List; import java.util.UUID;