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
path: root/coding
diff options
context:
space:
mode:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2017-04-06 12:04:10 +0300
committerVladiMihaylenko <vxmihaylenko@gmail.com>2017-04-06 12:30:33 +0300
commita3c7afe7326d0e397748b621f70fe9a0220bb9b4 (patch)
tree46bc72cb8bff500135b052472a08c861a2e6e97d /coding
parentc5a2ad8e4efde68f3945125463f5eaaad9edc5b1 (diff)
Fixed uri tests.
Diffstat (limited to 'coding')
-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;
}