naming updates for clarity

This commit is contained in:
Jonathan Shook
2021-06-24 11:18:47 -05:00
parent fb587ce426
commit d0371ecc16
4 changed files with 11 additions and 24 deletions

View File

@@ -186,9 +186,9 @@ public class WebDriverActivity extends SimpleActivity {
throw new BasicError("There were no active statements with tag filter '" + tagfilter + "'");
}
for (OpTemplate optemplate : stmts) {
long ratio = optemplate.getParamOrDefault("ratio", 1);
CommandTemplate cmd = new CommandTemplate(optemplate);
for (OpTemplate optpl : stmts) {
long ratio = optpl.getParamOrDefault("ratio", 1);
CommandTemplate cmd = new CommandTemplate(optpl);
planner.addOp(cmd, ratio);
}
return planner.resolve();