fix: non-functional API
This commit is contained in:
parent
5315fe3df4
commit
70dfc7e983
1 changed files with 3 additions and 3 deletions
|
|
@ -17,17 +17,17 @@ public class NonFunctionalShoppingListService extends ShoppingListService {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void putIngredient(RecipeIngredient ingredient) {
|
public void putIngredient(FormalIngredient ingredient) {
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void putIngredient(RecipeIngredient ingredient, Recipe recipe) {
|
public void putIngredient(FormalIngredient ingredient, Recipe recipe) {
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void putIngredient(RecipeIngredient ingredient, String recipeName) {
|
public void putIngredient(FormalIngredient ingredient, String recipeName) {
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue