fix: non-functional API

This commit is contained in:
Zhongheng Liu 2026-01-21 13:47:54 +01:00 committed by Natalia Cholewa
commit 70dfc7e983

View file

@ -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();
}