| 141 | } |
| 142 | |
| 143 | void RemoveCacheEntryProperty(std::string const& key, |
| 144 | std::string const& propName) |
| 145 | { |
| 146 | if (auto* entry = this->GetCacheEntry(key)) { |
| 147 | entry->RemoveProperty(propName); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | void AppendCacheEntryProperty(std::string const& key, |
| 152 | std::string const& propName, |
nothing calls this directly
no test coverage detected