| 327 | } |
| 328 | |
| 329 | std::set<std::vector<std::string>> NetworkResourceService::convertSettingsToFolderNames(std::vector<std::string> const& settings) |
| 330 | { |
| 331 | std::set<std::vector<std::string>> result; |
| 332 | for (auto const& part : settings) { |
| 333 | std::vector<std::string> splittedParts = getNameParts(part); |
| 334 | result.insert(splittedParts); |
| 335 | } |
| 336 | return result; |
| 337 | } |
no test coverage detected