Game #23

Merged
schrom01 merged 43 commits from Game into main 2022-03-20 16:56:34 +01:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 848d62a5f9 - Show all commits

View File

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