Test commit

This commit is contained in:
Andrin Fassbind 2022-03-18 14:06:14 +01:00
parent 8dad26006c
commit 848d62a5f9
1 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,8 @@ public class Track implements TrackSpecification {
private void readFile(File trackFile) throws FileNotFoundException { private void readFile(File trackFile) throws FileNotFoundException {
Scanner scanner = new Scanner(trackFile); Scanner scanner = new Scanner(trackFile);
while (scanner.hasNextLine()) { while (scanner.hasNextLine()) {
track.add(scanner.nextLine()); //track.add(scanner.nextLine());
System.out.println(scanner.nextLine());
} }
} }