style: Fix indentation and formatting across project files
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user