From 70dfc7e983f4949df27445c59530f715afb05f55 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Wed, 21 Jan 2026 13:47:54 +0100 Subject: [PATCH] fix: non-functional API --- .../client/service/NonFunctionalShoppingListService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/main/java/client/service/NonFunctionalShoppingListService.java b/client/src/main/java/client/service/NonFunctionalShoppingListService.java index f5638ed..82dad5c 100644 --- a/client/src/main/java/client/service/NonFunctionalShoppingListService.java +++ b/client/src/main/java/client/service/NonFunctionalShoppingListService.java @@ -17,17 +17,17 @@ public class NonFunctionalShoppingListService extends ShoppingListService { } @Override - public void putIngredient(RecipeIngredient ingredient) { + public void putIngredient(FormalIngredient ingredient) { throw new NotImplementedException(); } @Override - public void putIngredient(RecipeIngredient ingredient, Recipe recipe) { + public void putIngredient(FormalIngredient ingredient, Recipe recipe) { throw new NotImplementedException(); } @Override - public void putIngredient(RecipeIngredient ingredient, String recipeName) { + public void putIngredient(FormalIngredient ingredient, String recipeName) { throw new NotImplementedException(); }