| 859 | |
| 860 | |
| 861 | Module* Engine::getModule_NoLock(int64_t moduleId) { |
| 862 | if (moduleId < 0) |
| 863 | return NULL; |
| 864 | auto it = internal->modulesCache.find(moduleId); |
| 865 | if (it == internal->modulesCache.end()) |
| 866 | return NULL; |
| 867 | return it->second; |
| 868 | } |
| 869 | |
| 870 | |
| 871 | void Engine::resetModule(Module* module) { |
no outgoing calls
no test coverage detected