Removed whitespace changes

This commit is contained in:
mt3571 2020-11-27 12:22:17 +00:00
parent a357d2a1be
commit 3ad39889a9

View file

@ -190,7 +190,6 @@ class Recipe {
for (let i = startFrom; i < this.opList.length; i++) {
op = this.opList[i];
log.debug(`[${i}] ${op.name} ${JSON.stringify(op.ingValues)}`);
if (op.disabled) {
log.debug("Operation is disabled, skipping");
continue;
@ -201,7 +200,6 @@ class Recipe {
}
try {
if (op.name != "Comment") {
input = await dish.get(op.inputType);
}
@ -234,12 +232,10 @@ class Recipe {
output = await op.run(input, op.ingValues);
dish.set(output, op.outputType);
}
// if comment is the lastRunOp, the output we want is the previous command, not necessarily a String
if (op.name != "Comment"){
this.lastRunOp = op;
}
} catch (err) {
// Return expected errors as output
if (err instanceof OperationError ||