fix: non-functional API

This commit is contained in:
Zhongheng Liu 2026-01-21 13:47:54 +01:00
commit 11b038de1d
Signed by: steven
GPG key ID: F69B980899C1C09D

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