diff --git a/lib/remote/eventqueue.cpp b/lib/remote/eventqueue.cpp index 7b960daa4..4705d4050 100644 --- a/lib/remote/eventqueue.cpp +++ b/lib/remote/eventqueue.cpp @@ -127,11 +127,6 @@ void EventQueue::Register(const String& name, const EventQueue::Ptr& function) EventQueueRegistry::GetInstance()->Register(name, function); } -void EventQueue::Unregister(const String& name) -{ - EventQueueRegistry::GetInstance()->Unregister(name); -} - EventQueueRegistry *EventQueueRegistry::GetInstance() { return Singleton::GetInstance(); diff --git a/lib/remote/eventqueue.hpp b/lib/remote/eventqueue.hpp index 986ad5844..833714f9d 100644 --- a/lib/remote/eventqueue.hpp +++ b/lib/remote/eventqueue.hpp @@ -41,7 +41,6 @@ public: static EventQueue::Ptr GetByName(const String& name); static void Register(const String& name, const EventQueue::Ptr& function); - static void Unregister(const String& name); private: String m_Name;