remove unused startFrom argument from Recipe

This commit is contained in:
d98762625 2020-03-03 17:51:51 +00:00
parent d78730edc0
commit 536a82684c
4 changed files with 7 additions and 9 deletions

View file

@ -97,7 +97,7 @@ class Fork extends Operation {
dish.set(inputs[i], inputType);
try {
progress = await recipe.execute(dish, 0, state);
progress = await recipe.execute(dish, state);
} catch (err) {
if (!ignoreErrors) {
throw err;

View file

@ -123,7 +123,7 @@ class Subsection extends Operation {
dish.set(matchStr, inputType);
try {
progress = await recipe.execute(dish, 0, state);
progress = await recipe.execute(dish, state);
} catch (err) {
if (!ignoreErrors) {
throw err;