forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
beaaa893aa
commit
fe979b831c
2 changed files with 2 additions and 5 deletions
|
@ -92,7 +92,7 @@ bool IsSpecialName(string const & name) { return name == "." || name == ".."; }
|
|||
|
||||
bool IsDownloaderFile(string const & name)
|
||||
{
|
||||
static StringsRegexpFilter filter(".*\\.(downloading|resume|ready)[0-9]?$");
|
||||
static StringsRegexpFilter const filter(".*\\.(downloading|resume|ready)[0-9]?$");
|
||||
return filter.Matches(name);
|
||||
}
|
||||
|
||||
|
|
|
@ -15,9 +15,6 @@ namespace platform
|
|||
// Removes all files downloader creates during downloading of a country.
|
||||
void DeleteDownloaderFilesForCountry(CountryFile const & countryFile, int64_t version);
|
||||
|
||||
void CleanupMapsDirectory(int64_t latestVersion, vector<LocalCountryFile> const & localFiles,
|
||||
function<bool(string const & filename)> const & isCountryName);
|
||||
|
||||
// Finds all local map files in |directory|. Version of these files is
|
||||
// passed as an argument. Also, performs cleanup described in comment
|
||||
// for FindAllLocalMapsAndCleanup().
|
||||
|
@ -46,7 +43,7 @@ void FindAllLocalMapsAndCleanup(int64_t latestVersion, vector<LocalCountryFile>
|
|||
// * partially downloaded non-latest maps (with version less than |latestVersion|)
|
||||
// * empty directories
|
||||
// * old (format v1) maps
|
||||
// * old (splitted) Japan and Brazil maps
|
||||
// * old (split) Japan and Brazil maps
|
||||
// * indexes for absent countries
|
||||
void CleanupMapsDirectory(int64_t latestVersion);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue