diff --git a/library/Icingadb/Compat/CompatObject.php b/library/Icingadb/Compat/CompatObject.php index 13e8a679..e0f8e7ba 100644 --- a/library/Icingadb/Compat/CompatObject.php +++ b/library/Icingadb/Compat/CompatObject.php @@ -46,19 +46,6 @@ trait CompatObject } } - public function getActionUrls() - { - $actionUrl = $this->object->action_url; - - if ($actionUrl === null) { - return []; - } - - return $this->resolveAllStrings( - MonitoredObject::parseAttributeUrls($actionUrl->action_url) - ); - } - /** * Get this object's name * @@ -69,19 +56,6 @@ trait CompatObject return $this->object->name; } - public function getNotesUrls() - { - $notesUrl = $this->object->notes_url; - - if ($notesUrl === null) { - return []; - } - - return $this->resolveAllStrings( - MonitoredObject::parseAttributeUrls($notesUrl->notes_url) - ); - } - public function fetchCustomvars() { if ($this->customvars !== null) {