Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Gorshenin <y@maps.me>2015-10-09 14:07:44 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:02:22 +0300
commitc854f3ea8269ffcd08b4106ab9a0254917540830 (patch)
tree12fb597795f012e50ce10583f38a104d91073413 /indexer/index.cpp
parent7cab5585bd33564c796288060b81b17ee07343b6 (diff)
Review fixes.
Diffstat (limited to 'indexer/index.cpp')
-rw-r--r--indexer/index.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/indexer/index.cpp b/indexer/index.cpp
index adedb68d4a..a39138fa44 100644
--- a/indexer/index.cpp
+++ b/indexer/index.cpp
@@ -72,14 +72,7 @@ unique_ptr<MwmSet::MwmValueBase> Index::CreateValue(MwmInfo & info) const
if (!infoEx.m_rankTableCtorCalled)
{
infoEx.m_rankTableCtorCalled = true;
- try
- {
- search::RankTableBuilder::CreateIfNotExists(localFile);
- }
- catch (exception const & e)
- {
- LOG(LWARNING, ("Can't create rank table for:", localFile, ":", e.what()));
- }
+ search::RankTableBuilder::CreateIfNotExists(localFile);
}
unique_ptr<MwmValue> p(new MwmValue(localFile));