forked from organicmaps/organicmaps
Remove unused storage::IsCellId().
This commit is contained in:
parent
7572aeefee
commit
1a54fbfede
1 changed files with 0 additions and 13 deletions
|
@ -84,19 +84,6 @@ namespace storage
|
|||
// return ar;
|
||||
// }
|
||||
|
||||
inline bool IsCellId(string const & cellId)
|
||||
{
|
||||
size_t const size = cellId.size();
|
||||
if (size == 0)
|
||||
return false;
|
||||
for (size_t i = 0; i < size; ++i)
|
||||
{
|
||||
if (cellId[i] < '0' || cellId[i] > '3')
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool LoadCountries(file_t const & file, TTilesContainer const & sortedTiles,
|
||||
TCountriesContainer & countries)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue