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