Livestatus\StatusQuery: remove obsolete method

This commit is contained in:
Thomas Gelf 2014-11-16 16:37:33 +01:00
parent 6d362b0606
commit 1a4bf609a2
1 changed files with 1 additions and 5 deletions

View File

@ -33,6 +33,7 @@ class StatusQuery extends Query
protected $table = 'services';
protected $available_columns = array(
'host_name',
'host_display_name',
@ -67,9 +68,4 @@ class StatusQuery extends Query
'comments_with_info',
'downtimes_with_info',
);
protected function createQuery()
{
return $this->connection->getConnection()->select()->from('services', $this->available_columns);
}
}