| 1353 | } |
| 1354 | |
| 1355 | void Node::pauseActionInList(Action* action) { |
| 1356 | if (action) { |
| 1357 | pauseActionInList(action->_next); |
| 1358 | _scheduler->unschedule(action); |
| 1359 | } |
| 1360 | } |
| 1361 | |
| 1362 | void Node::resumeActionInList(Action* action) { |
| 1363 | if (action) { |
nothing calls this directly
no test coverage detected