chore: cleanup debug sout (oops)

This commit is contained in:
Zhongheng Liu 2025-12-04 18:21:02 +01:00
commit 73324022b0
Signed by: steven
GPG key ID: F69B980899C1C09D

View file

@ -59,7 +59,6 @@ public class IngredientListCtrl implements Initializable {
if (recipe == null) {
this.ingredients = FXCollections.observableArrayList(new ArrayList<>());
} else {
System.out.println("refetched");
List<String> ingredientList = recipe.getIngredients();
this.ingredients = FXCollections.observableArrayList(ingredientList);
}