| 2066 | } |
| 2067 | |
| 2068 | void Storage::UpdateNode(CountryId const & countryId) |
| 2069 | { |
| 2070 | ForEachInSubtree(countryId, [this](CountryId const & descendantId, bool groupNode) |
| 2071 | { |
| 2072 | if (!groupNode && m_localFiles.find(descendantId) != m_localFiles.end()) |
| 2073 | DownloadNode(descendantId, true /* isUpdate */); |
| 2074 | }); |
| 2075 | } |
| 2076 | |
| 2077 | void Storage::CancelDownloadNode(CountryId const & countryId) |
| 2078 | { |
no test coverage detected