diff --git a/storage/country.cpp b/storage/country.cpp index 5a52f9e1b2..72240a3a5a 100644 --- a/storage/country.cpp +++ b/storage/country.cpp @@ -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) {