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:
authorvng <viktor.govako@gmail.com>2013-10-11 20:57:25 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:03:29 +0300
commit56f90e5b925aa8340b7b8dc0cf38015567140e39 (patch)
treebc1d82f25ced6ad8787f4961a8bd5332e1a4bed8 /platform/chunks_download_strategy.cpp
parent6647889475a48b2b7af842d7c1e87a1a3698013e (diff)
Remove throwing SourceOutOfBoundsException due to runtime overhead (checked in iOS profiler).
Diffstat (limited to 'platform/chunks_download_strategy.cpp')
-rw-r--r--platform/chunks_download_strategy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/chunks_download_strategy.cpp b/platform/chunks_download_strategy.cpp
index 14670b649f..57e4a7353e 100644
--- a/platform/chunks_download_strategy.cpp
+++ b/platform/chunks_download_strategy.cpp
@@ -121,7 +121,7 @@ int64_t ChunksDownloadStrategy::LoadOrInitChunks( string const & fName,
}
catch (RootException const & e)
{
- // Usually - file not exists. May be SourceOutOfBoundsException.
+ // Usually - file not exists or Reader::Exception.
LOG(LDEBUG, (e.Msg()));
}