about summary refs log tree commit diff stats
path: root/crates/rocie-client/src/models/refined_recipe.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/rocie-client/src/models/refined_recipe.rs')
-rw-r--r--crates/rocie-client/src/models/refined_recipe.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/crates/rocie-client/src/models/refined_recipe.rs b/crates/rocie-client/src/models/refined_recipe.rs
index bbb38a0..cec27c2 100644
--- a/crates/rocie-client/src/models/refined_recipe.rs
+++ b/crates/rocie-client/src/models/refined_recipe.rs
@@ -34,10 +34,6 @@ pub struct RefinedRecipe {
 impl RefinedRecipe {
     /// An refined recipe.  This is a decoding of a recipe's cooklang description, already processed in a way to be consumed by a client.
     pub fn new(id: models::RecipeId, ingridients: Vec<models::ProductId>) -> RefinedRecipe {
-        RefinedRecipe {
-            id,
-            ingridients,
-        }
+        RefinedRecipe { id, ingridients }
     }
 }
-