From b00e94f6b24a79446f2b6450586ccedd3f80542f Mon Sep 17 00:00:00 2001 From: tatiana-kondakova Date: Wed, 25 Apr 2018 13:09:58 +0300 Subject: [PATCH] [geocoder] Do not catch Reader::Exception in Borders::Deserialize --- indexer/borders.cpp | 17 ++++------------- indexer/borders.hpp | 3 ++- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/indexer/borders.cpp b/indexer/borders.cpp index 81946e145a..dceb2eee8c 100644 --- a/indexer/borders.cpp +++ b/indexer/borders.cpp @@ -98,19 +98,10 @@ bool Borders::Border::IsPointInside(m2::PointD const & point) const return true; } -bool Borders::Deserialize(string const & filename) +void Borders::Deserialize(string const & filename) { - try - { - BordersVectorReader reader(filename); - auto const & records = reader.GetVector(); - DeserializeFromVec(records); - } - catch (Reader::Exception const & e) - { - LOG(LERROR, ("Error while reading file:", e.Msg())); - return false; - } - return true; + BordersVectorReader reader(filename); + auto const & records = reader.GetVector(); + DeserializeFromVec(records); } } // namespace indexer diff --git a/indexer/borders.hpp b/indexer/borders.hpp index 333c0f39d4..bc6f02ffa4 100644 --- a/indexer/borders.hpp +++ b/indexer/borders.hpp @@ -32,7 +32,8 @@ public: return false; } - bool Deserialize(std::string const & filename); + // Throws Reader::Exception in case of data reading errors. + void Deserialize(std::string const & filename); template void DeserializeFromVec(BordersVec const & vec)