summaryrefslogtreecommitdiff
path: root/src/main/java/com/stileeducation/markr/service/TestResultsService.java
diff options
context:
space:
mode:
authorSzymon Szukalski <szymon@skas.io>2024-07-26 15:15:06 +1000
committerSzymon Szukalski <szymon@skas.io>2024-07-26 15:15:06 +1000
commitb59d2f0c722d2e21194ed8d66a17be8128ba7b39 (patch)
tree14e6abb74bcf71bd2676a1bdcc92c4058ecc3e0c /src/main/java/com/stileeducation/markr/service/TestResultsService.java
parent7d4d645eb24a30888825f6cdf50cb3eec6ef59f7 (diff)
Remove unused variables and tidy comments
Diffstat (limited to 'src/main/java/com/stileeducation/markr/service/TestResultsService.java')
-rw-r--r--src/main/java/com/stileeducation/markr/service/TestResultsService.java6
1 files changed, 0 insertions, 6 deletions
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;
}