mirror of
https://github.com/Icinga/icinga2.git
synced 2026-05-28 04:12:13 -04:00
Remove unused EventQueue::Unregister()
This commit is contained in:
parent
d19c0637ee
commit
402a6bbf40
2 changed files with 0 additions and 6 deletions
|
|
@ -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<EventQueueRegistry>::GetInstance();
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue