({dispatch, state, commit}, executor)
| 221 | }, |
| 222 | |
| 223 | _removeExecutor({dispatch, state, commit}, executor) { |
| 224 | if (!(executor.state.id in state.executors)) { |
| 225 | return; |
| 226 | } |
| 227 | |
| 228 | this.unregisterModule(['executions', executor.state.id]); |
| 229 | commit('REMOVE_EXECUTOR', executor) |
| 230 | } |
| 231 | } |
| 232 | } |
nothing calls this directly
no outgoing calls
no test coverage detected