| 85 | } |
| 86 | |
| 87 | bool PropertiesFile::hasValue(const std::string& key) const { |
| 88 | return findKey(key) != lines_.end(); |
| 89 | } |
| 90 | |
| 91 | utils::optional<std::string> PropertiesFile::getValue(const std::string& key) const { |
| 92 | const auto it = findKey(key); |
no test coverage detected