forked from organicmaps/organicmaps
Removed dummy functions.
This commit is contained in:
parent
0d2847d2bb
commit
e193309a6a
2 changed files with 0 additions and 24 deletions
|
@ -372,9 +372,6 @@ void FeatureType::ParseMetadata() const
|
|||
|
||||
m_pLoader->ParseMetadata();
|
||||
|
||||
if (HasInternet())
|
||||
m_metadata.Set(Metadata::FMD_INTERNET, "wlan");
|
||||
|
||||
m_bMetadataParsed = true;
|
||||
}
|
||||
|
||||
|
@ -617,26 +614,6 @@ string FeatureType::GetRoadNumber() const
|
|||
return m_params.ref;
|
||||
}
|
||||
|
||||
bool FeatureType::HasInternet() const
|
||||
{
|
||||
ParseTypes();
|
||||
|
||||
bool res = false;
|
||||
|
||||
ForEachType([&res](uint32_t type)
|
||||
{
|
||||
if (!res)
|
||||
{
|
||||
static const uint32_t t1 = classif().GetTypeByPath({"internet_access"});
|
||||
|
||||
ftype::TruncValue(type, 1);
|
||||
res = (type == t1);
|
||||
}
|
||||
});
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
void FeatureType::SwapGeometry(FeatureType & r)
|
||||
{
|
||||
ASSERT_EQUAL(m_bPointsParsed, r.m_bPointsParsed, ());
|
||||
|
|
|
@ -293,7 +293,6 @@ public:
|
|||
uint8_t GetRank() const;
|
||||
uint32_t GetPopulation() const;
|
||||
string GetRoadNumber() const;
|
||||
bool HasInternet() const;
|
||||
|
||||
inline feature::Metadata const & GetMetadata() const
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue