| 124 | } |
| 125 | |
| 126 | void SetCacheEntryProperty(std::string const& key, |
| 127 | std::string const& propName, |
| 128 | std::string const& value) |
| 129 | { |
| 130 | if (auto* entry = this->GetCacheEntry(key)) { |
| 131 | entry->SetProperty(propName, value); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | void SetCacheEntryBoolProperty(std::string const& key, |
| 136 | std::string const& propName, bool value) |
nothing calls this directly
no test coverage detected