From b59d2f0c722d2e21194ed8d66a17be8128ba7b39 Mon Sep 17 00:00:00 2001 From: Szymon Szukalski Date: Fri, 26 Jul 2024 15:15:06 +1000 Subject: Remove unused variables and tidy comments --- .../java/com/stileeducation/markr/dto/AggregateResponseDTO.java | 1 - .../java/com/stileeducation/markr/service/TestResultsService.java | 6 ------ 2 files changed, 7 deletions(-) (limited to 'src/main/java/com/stileeducation/markr') diff --git a/src/main/java/com/stileeducation/markr/dto/AggregateResponseDTO.java b/src/main/java/com/stileeducation/markr/dto/AggregateResponseDTO.java index 6947764..b16a4b8 100644 --- a/src/main/java/com/stileeducation/markr/dto/AggregateResponseDTO.java +++ b/src/main/java/com/stileeducation/markr/dto/AggregateResponseDTO.java @@ -16,7 +16,6 @@ public class AggregateResponseDTO { private double p75 = 0.0; private int count = 0; - // Getters and Setters public double getMean() { return mean; } diff --git a/src/main/java/com/stileeducation/markr/service/TestResultsService.java b/src/main/java/com/stileeducation/markr/service/TestResultsService.java index 7823feb..3c941dd 100644 --- a/src/main/java/com/stileeducation/markr/service/TestResultsService.java +++ b/src/main/java/com/stileeducation/markr/service/TestResultsService.java @@ -28,10 +28,6 @@ public class TestResultsService { private final TestResultRepository testResultRepository; - private final StudentRepository studentRepository; - - private final TestRepository testRepository; - private final StudentService studentService; private final TestService testService; @@ -42,8 +38,6 @@ public class TestResultsService { StudentService studentService, TestService testService) { this.testResultRepository = testResultRepository; - this.studentRepository = studentRepository; - this.testRepository = testRepository; this.studentService = studentService; this.testService = testService; } -- cgit v1.2.3