diff options
Diffstat (limited to 'src/main/java/com/stileeducation/markr')
| -rw-r--r-- | src/main/java/com/stileeducation/markr/dto/AggregateResponseDTO.java | 1 | ||||
| -rw-r--r-- | src/main/java/com/stileeducation/markr/service/TestResultsService.java | 6 |
2 files changed, 0 insertions, 7 deletions
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; } |
