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:
authorRoman Kuznetsov <r.kuznetsow@gmail.com>2017-06-16 15:56:35 +0300
committerGitHub <noreply@github.com>2017-06-16 15:56:35 +0300
commit4b1f3867a6f67186197e9a935cef5866f43dbb6f (patch)
tree23cd8ba7944bfe7cd05d186304d39cc2dd21d407
parent4cf43b0d65c6e3c4d8b7cb3220158586bd223c44 (diff)
parent77ca67502aa464e3651069383c6bec9a3e230b8c (diff)
Merge pull request #6286 from Zverik/noshieldbeta-868
[shields] Revert US shields fix
-rw-r--r--indexer/road_shields_parser.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/indexer/road_shields_parser.cpp b/indexer/road_shields_parser.cpp
index 73c1d3657f..50fe93fc28 100644
--- a/indexer/road_shields_parser.cpp
+++ b/indexer/road_shields_parser.cpp
@@ -79,13 +79,6 @@ public:
RoadShieldType FindNetworkShield(std::string network) const
{
- // Special processing for US state highways, to not duplicate the table.
- if (network.size() == 5 && strings::StartsWith(network, "US:"))
- {
- if (std::find(kStatesCode.begin(), kStatesCode.end(), network.substr(3)) != kStatesCode.end())
- return RoadShieldType::Generic_White;
- }
-
// Minimum length for the network tag is 4 (US:I).
if (network.size() > 4)
{