| 115 | } |
| 116 | |
| 117 | bool GetCacheEntryPropertyAsBool(std::string const& key, |
| 118 | std::string const& propName) const |
| 119 | { |
| 120 | if (auto const* entry = this->GetCacheEntry(key)) { |
| 121 | return entry->GetPropertyAsBool(propName); |
| 122 | } |
| 123 | return false; |
| 124 | } |
| 125 | |
| 126 | void SetCacheEntryProperty(std::string const& key, |
| 127 | std::string const& propName, |
nothing calls this directly
no test coverage detected