From e4f331bff9a4f3a088f81efe40ad4359ad16f024 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 13 Aug 2015 13:27:28 +0200 Subject: [PATCH] DataView: Drop init() refs #7344 --- .../library/Monitoring/DataView/DataView.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/modules/monitoring/library/Monitoring/DataView/DataView.php b/modules/monitoring/library/Monitoring/DataView/DataView.php index 31ca426d5..06c8cbb2a 100644 --- a/modules/monitoring/library/Monitoring/DataView/DataView.php +++ b/modules/monitoring/library/Monitoring/DataView/DataView.php @@ -45,18 +45,6 @@ abstract class DataView implements QueryInterface, SortRules, IteratorAggregate $this->connection = $connection; $this->query = $connection->query($this->getQueryName(), $columns); $this->filter = Filter::matchAll(); - $this->init(); - } - - /** - * Initializer for `distinct purposes - * - * Implemented for `distinct as workaround - * - * @TODO Subject to change, see #7344 - */ - public function init() - { } /**