| 381 | } |
| 382 | |
| 383 | bool Configurations::Parser::isLevel(const std::string& line) { |
| 384 | return base::utils::Str::startsWith(line, std::string(base::consts::kConfigurationLevel)); |
| 385 | } |
| 386 | |
| 387 | bool Configurations::Parser::isComment(const std::string& line) { |
| 388 | return base::utils::Str::startsWith(line, std::string(base::consts::kConfigurationComment)); |
nothing calls this directly
no outgoing calls
no test coverage detected