Skip to content

Commit

Permalink
Reduce common error handling overhead.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Hale committed Oct 16, 2024
1 parent 2dd990b commit 4fb4bd7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ private ValuePipeEvaluationStep precompileVar(Var var) throws ValueExprEvaluatio
if (bvalue != null) {
parent.push(bvalue);
} else {
parent.handleValueError(String.format("Var %s has no value (%s)", varName, bindings));
parent.handleValueError("Var " + varName + " has no value");
}
};
}
Expand Down

0 comments on commit 4fb4bd7

Please sign in to comment.