From f417445259e7a4a6c3b69893634f2c7b8f0a65a0 Mon Sep 17 00:00:00 2001 From: broodjeaap89 Date: Mon, 26 Jul 2021 21:13:22 +0200 Subject: [PATCH] removed double semicolon --- lib/entities/PizzaRecipe/PizzaRecipe.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/entities/PizzaRecipe/PizzaRecipe.dart b/lib/entities/PizzaRecipe/PizzaRecipe.dart index 6284bce..e1136f4 100644 --- a/lib/entities/PizzaRecipe/PizzaRecipe.dart +++ b/lib/entities/PizzaRecipe/PizzaRecipe.dart @@ -57,7 +57,7 @@ class PizzaRecipe extends HiveObject { String name = recipe["name"]; String description = recipe["description"]; - YamlList ingredients = recipe["ingredients"];; + YamlList ingredients = recipe["ingredients"]; List newIngredients = ingredients.map((ingredient) => Ingredient(ingredient["name"], ingredient["unit"], ingredient["value"])).toList();