diff options
author | Max Kellermann <max@duempel.org> | 2014-01-22 09:51:26 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-22 09:51:26 +0100 |
commit | 7b44dea4b1dcfcd74b2648e8be0d6e38918cbe0b (patch) | |
tree | 073b2e7d80176268a84564f4df3c6f0f2aaadaad /src/db/upnp/Device.cxx | |
parent | 18aea922e9f2f60bfadac1392cbf82fd768ecc8b (diff) | |
download | mpd-7b44dea4b1dcfcd74b2648e8be0d6e38918cbe0b.tar.gz mpd-7b44dea4b1dcfcd74b2648e8be0d6e38918cbe0b.tar.xz mpd-7b44dea4b1dcfcd74b2648e8be0d6e38918cbe0b.zip |
db/upnp/Device: remove unused UPnPService attributes
Diffstat (limited to '')
-rw-r--r-- | src/db/upnp/Device.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/db/upnp/Device.cxx b/src/db/upnp/Device.cxx index 8f37a9fb8..2f39e8829 100644 --- a/src/db/upnp/Device.cxx +++ b/src/db/upnp/Device.cxx @@ -66,10 +66,6 @@ protected: if (!current.compare("deviceType")) m_device.deviceType = std::move(str); break; - case 'e': - if (!current.compare("eventSubURL")) - m_tservice.eventSubURL = std::move(str); - break; case 'f': if (!current.compare("friendlyName")) m_device.friendlyName = std::move(str); @@ -83,11 +79,6 @@ protected: case 's': if (!current.compare("serviceType")) m_tservice.serviceType = std::move(str); - else if (!current.compare("serviceId")) - m_tservice.serviceId = std::move(str); - case 'S': - if (!current.compare("SCPDURL")) - m_tservice.SCPDURL = std::move(str); break; case 'U': if (!current.compare("UDN")) |