You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, ActionsLoader is inconsistent with the rest of the loader replacements. It uses a switch statement to check an element's type instead of the much more extensible IExecutor, which is used by all of the other loaders.
What should be done:
Add executor interfaces to ActionsLoader.
Rewrite LoadActionSets and ReadAction to use said executors.
Optionally rename ReadAction to LoadAction for consistency with other method names.
The text was updated successfully, but these errors were encountered:
Currently, ActionsLoader is inconsistent with the rest of the loader replacements. It uses a switch statement to check an element's type instead of the much more extensible
IExecutor
, which is used by all of the other loaders.What should be done:
ActionsLoader
.LoadActionSets
andReadAction
to use said executors.ReadAction
toLoadAction
for consistency with other method names.The text was updated successfully, but these errors were encountered: