| 59 | } |
| 60 | |
| 61 | bool DiffsDataSource::VersionFor(storage::CountryId const & countryId, uint64_t & v) const |
| 62 | { |
| 63 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 64 | |
| 65 | return WithNotAppliedDiff(countryId, [&v](DiffInfo const & info) { v = info.m_version; }); |
| 66 | } |
| 67 | |
| 68 | bool DiffsDataSource::HasDiffFor(storage::CountryId const & countryId) const |
| 69 | { |
no outgoing calls
no test coverage detected