Removed unnecessary SetLocale calls

There were 3 calls to SetLocale internally, 2 are removed. the last one left which
is called when SearchEngine is created.

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-04-12 23:44:07 +02:00 committed by Alexander Borsuk
parent e255eb49ce
commit b99acb467b
2 changed files with 0 additions and 3 deletions

View file

@ -206,8 +206,6 @@ Processor::Processor(DataSource const & dataSource, CategoriesHolder const & cat
LanguageTier::LANGUAGE_TIER_ALT_AND_OLD,
{StringUtf8Multilang::kAltNameCode, StringUtf8Multilang::kOldNameCode});
SetPreferredLocale("en");
for (auto const & country : m_infoGetter.GetCountries())
m_countriesTrie.Add(country.m_countryId, true);
}

View file

@ -601,7 +601,6 @@ Ranker::Ranker(DataSource const & dataSource, CitiesBoundariesTable const & boun
, m_categories(categories)
, m_suggests(suggests)
{
SetLocale("default");
}
void Ranker::Init(Params const & params, Geocoder::Params const & geocoderParams)