Commit a2ead993 authored by Max Kellermann's avatar Max Kellermann

db/upnp/Device: remove unused attribute "m_tabs"

parent b330aa8d
...@@ -34,7 +34,6 @@ ...@@ -34,7 +34,6 @@
*/ */
class UPnPDeviceParser final : public CommonExpatParser { class UPnPDeviceParser final : public CommonExpatParser {
UPnPDevice &m_device; UPnPDevice &m_device;
std::string m_tabs;
std::vector<std::string> m_path; std::vector<std::string> m_path;
UPnPService m_tservice; UPnPService m_tservice;
...@@ -44,7 +43,6 @@ public: ...@@ -44,7 +43,6 @@ public:
protected: protected:
virtual void StartElement(const XML_Char *name, const XML_Char **) { virtual void StartElement(const XML_Char *name, const XML_Char **) {
m_tabs.push_back('\t');
m_path.push_back(name); m_path.push_back(name);
} }
...@@ -53,8 +51,7 @@ protected: ...@@ -53,8 +51,7 @@ protected:
m_device.services.push_back(m_tservice); m_device.services.push_back(m_tservice);
m_tservice.clear(); m_tservice.clear();
} }
if (m_tabs.size())
m_tabs.erase(m_tabs.size()-1);
m_path.pop_back(); m_path.pop_back();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment