small fix

This commit is contained in:
Malte Schulze Hobeling 2023-01-30 14:04:59 +01:00
parent 81bcb44d74
commit 50e0118ded

View File

@ -208,7 +208,6 @@ public class ConsoleLib {
System.out.print("Bitte geben Sie das Datum im Format YYYY-MM-DD an: ");
food_planData[0] = sc.nextLine();
List<Food> veganMain = FoodMgr.getVeganFood(false);
System.out.println(veganMain.size());
for (Food food : veganMain) {
System.out.println(food.getId() + " : " + food.getName());
}