fix: non-functional API
This commit is contained in:
parent
fe2f9ac1c3
commit
11b038de1d
1 changed files with 3 additions and 3 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue