Refactoring: rename evaluate to execute on actions

This commit is contained in:
Felipe Zimmerle
2019-02-25 21:47:51 -03:00
parent 47ec32fba8
commit affdc49a9e
170 changed files with 234 additions and 239 deletions

View File

@@ -59,7 +59,7 @@ class Allow : public Action {
bool init(std::string *error) override;
bool evaluate(RuleWithActions *rule, Transaction *transaction) override;
bool execute(RuleWithActions *rule, Transaction *transaction) override;
bool isDisruptive() override { return true; }
AllowType m_allowType;