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:
Diffstat (limited to 'coding/uri.cpp')
-rw-r--r--coding/uri.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/coding/uri.cpp b/coding/uri.cpp
index 46b3b2ef32..1c1dafbf9b 100644
--- a/coding/uri.cpp
+++ b/coding/uri.cpp
@@ -2,7 +2,6 @@
#include "coding/url_encode.hpp"
#include "base/assert.hpp"
-#include "base/string_utils.hpp"
namespace url_scheme
{
@@ -77,7 +76,6 @@ bool Uri::ForEachKeyValue(TCallback const & callback) const
else
key = UrlDecode(m_url.substr(start, end - start));
- strings::AsciiToLower(key);
if (!callback(key, value))
return false;
}