RootCauseunvalidated

while (!(scanner.nextLine().isEmpty())) — loop through a txt file and create a list of recipes. Tension: you are consuming the next line without storing it no where and thus without the chance of accessing it again.

69aadc84-266a-4c35-bd16-1695214c2c75

while (!(scanner.nextLine().isEmpty())) — loop through a txt file and create a list of recipes. Tension: you are consuming the next line without storing it no where and thus without the chance of accessing it again.