diff --git a/defines.hpp b/defines.hpp index 6d723efc4d..a9ad9376bd 100644 --- a/defines.hpp +++ b/defines.hpp @@ -45,7 +45,6 @@ #define FEATURE_OFFSETS_FILE_TAG "offs" #define SEARCH_RANKS_FILE_TAG "ranks" #define POPULARITY_RANKS_FILE_TAG "popularity" -#define RATINGS_FILE_TAG "ratings" #define REGION_INFO_FILE_TAG "rgninfo" #define METALINES_FILE_TAG "metalines" #define CAMERAS_INFO_FILE_TAG "speedcams" diff --git a/search/pre_ranker.cpp b/search/pre_ranker.cpp index 765d5506a3..0ba84aca73 100644 --- a/search/pre_ranker.cpp +++ b/search/pre_ranker.cpp @@ -3,19 +3,16 @@ #include "search/dummy_rank_table.hpp" #include "search/lazy_centers_table.hpp" #include "search/pre_ranking_info.hpp" -#include "search/tracer.hpp" #include "editor/osm_editor.hpp" #include "indexer/data_source.hpp" #include "indexer/mwm_set.hpp" #include "indexer/rank_table.hpp" -#include "indexer/scales.hpp" #include "geometry/mercator.hpp" #include "geometry/nearby_points_sweeper.hpp" -#include "base/random.hpp" #include "base/stl_helpers.hpp" #include @@ -83,7 +80,6 @@ void PreRanker::FillMissingFieldsInPreResults() MwmSet::MwmHandle mwmHandle; unique_ptr ranks = make_unique(); unique_ptr popularityRanks = make_unique(); - unique_ptr ratings = make_unique(); unique_ptr centers; bool pivotFeaturesInitialized = false; @@ -103,15 +99,12 @@ void PreRanker::FillMissingFieldsInPreResults() ranks = RankTable::Load(value->m_cont, SEARCH_RANKS_FILE_TAG); popularityRanks = RankTable::Load(value->m_cont, POPULARITY_RANKS_FILE_TAG); - ratings = RankTable::Load(value->m_cont, RATINGS_FILE_TAG); centers = make_unique(*value); } if (!ranks) ranks = make_unique(); if (!popularityRanks) popularityRanks = make_unique(); - if (!ratings) - ratings = make_unique(); } r.SetRank(ranks->Get(id.m_index));