style: Fix indentation and formatting across project files

This commit is contained in:
2026-05-24 06:47:23 +03:30
parent b01a5654a1
commit 8f28ccf82f
3 changed files with 11 additions and 25 deletions
+3 -6
View File
@@ -15,11 +15,9 @@ public class StudentLoader extends Thread {
// Local student storage
private final ArrayList<Student> students =
new ArrayList<>();
private final ArrayList<Student> students = new ArrayList<>();
public StudentLoader(
List<String> lines) {
public StudentLoader(List<String> lines) {
this.lines = lines;
}
@@ -53,8 +51,7 @@ public class StudentLoader extends Thread {
}
public ArrayList<Student>
getStudents() {
public ArrayList<Student> getStudents() {
return students;
}