DataView: Drop init()

refs #7344
This commit is contained in:
Johannes Meyer 2015-08-13 13:27:28 +02:00
parent ad20d35e78
commit e4f331bff9
1 changed files with 0 additions and 12 deletions

View File

@ -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()
{
}
/**