forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
bafab099f8
commit
9cfb43a2c1
2 changed files with 5 additions and 8 deletions
|
@ -49,10 +49,7 @@ void LocalCountryFile::DeleteFromDisk(TMapOptions files) const
|
|||
if (OnDisk(file) && HasOptions(files, file))
|
||||
{
|
||||
if (!my::DeleteFileX(GetPath(file)))
|
||||
{
|
||||
LOG(LERROR, (file, "from", *this, "wasn't deleted from disk."));
|
||||
ASSERT(false, ());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -238,20 +238,20 @@ string CountryIndexes::GetPath(LocalCountryFile const & localFile, Index index)
|
|||
{
|
||||
string const directory = IndexesDir(localFile);
|
||||
string const name = localFile.GetCountryFile().GetNameWithoutExt();
|
||||
string file;
|
||||
char const * ext = nullptr;
|
||||
switch (index)
|
||||
{
|
||||
case Index::Bits:
|
||||
file = name + ".bftsegbits";
|
||||
ext = ".bftsegbits";
|
||||
break;
|
||||
case Index::Nodes:
|
||||
file = name + ".bftsegnodes";
|
||||
ext = ".bftsegnodes";
|
||||
break;
|
||||
case Index::Offsets:
|
||||
file = name + ".offsets";
|
||||
ext = ".offsets";
|
||||
break;
|
||||
}
|
||||
return my::JoinFoldersToPath(directory, file);
|
||||
return my::JoinFoldersToPath(directory, name + ext);
|
||||
}
|
||||
|
||||
// static
|
||||
|
|
Loading…
Add table
Reference in a new issue