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
+4 -11
View File
@@ -8,22 +8,15 @@ import java.util.List;
public class FileManager {
public static List<String>
loadStudents(
String path)
throws Exception {
public static List<String> loadStudents(String path) throws Exception {
List<String> lines =
new ArrayList<>();
List<String> lines = new ArrayList<>();
BufferedReader reader =
new BufferedReader(
new FileReader(path));
BufferedReader reader = new BufferedReader(new FileReader(path));
String line;
while ((line = reader.readLine())
!= null) {
while ((line = reader.readLine()) != null) {
// TODO: