| 241 | } |
| 242 | |
| 243 | void NamespaceManager::detachKeyObservers() |
| 244 | { |
| 245 | // May not be called with empty namespace |
| 246 | assert(_namespace); |
| 247 | |
| 248 | // Traverse the entity |
| 249 | _entity.forEachEntityKeyValue([this](const std::string& key, EntityKeyValue& value) |
| 250 | { |
| 251 | detachKeyObserver(key, value); |
| 252 | }); |
| 253 | } |
| 254 | |
| 255 | } // namespace entity |
nothing calls this directly
no test coverage detected