From 73324022b00fbf4a39310a758ab33d05b9fcc476 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Thu, 4 Dec 2025 18:21:02 +0100 Subject: [PATCH] chore: cleanup debug sout (oops) --- .../src/main/java/client/scenes/recipe/IngredientListCtrl.java | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/main/java/client/scenes/recipe/IngredientListCtrl.java b/client/src/main/java/client/scenes/recipe/IngredientListCtrl.java index a772913..6db8fb5 100644 --- a/client/src/main/java/client/scenes/recipe/IngredientListCtrl.java +++ b/client/src/main/java/client/scenes/recipe/IngredientListCtrl.java @@ -59,7 +59,6 @@ public class IngredientListCtrl implements Initializable { if (recipe == null) { this.ingredients = FXCollections.observableArrayList(new ArrayList<>()); } else { - System.out.println("refetched"); List ingredientList = recipe.getIngredients(); this.ingredients = FXCollections.observableArrayList(ingredientList); }