diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-09-26 18:59:52 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-09-27 09:44:21 +0200 |
commit | f71ffc73dbbf4c75522960c95a7f7500466041f4 (patch) | |
tree | 9e9180fb4d6acc9448e04842d77355403c3a88ea /lib/private/Settings | |
parent | 0259792614e3ed2dd743c2c292d8d90e2b0a05aa (diff) | |
download | nextcloud-server-f71ffc73dbbf4c75522960c95a7f7500466041f4.tar.gz nextcloud-server-f71ffc73dbbf4c75522960c95a7f7500466041f4.zip |
Remove unused constructor argument
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/Settings')
-rw-r--r-- | lib/private/Settings/Manager.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php index e3cbc1b672f..48883582ef4 100644 --- a/lib/private/Settings/Manager.php +++ b/lib/private/Settings/Manager.php @@ -30,7 +30,6 @@ namespace OC\Settings; use OCP\AppFramework\QueryException; -use OCP\IDBConnection; use OCP\IL10N; use OCP\ILogger; use OCP\IServerContainer; @@ -44,9 +43,6 @@ class Manager implements IManager { /** @var ILogger */ private $log; - /** @var IDBConnection */ - private $dbc; - /** @var IL10N */ private $l; @@ -58,13 +54,11 @@ class Manager implements IManager { public function __construct( ILogger $log, - IDBConnection $dbc, IL10N $l10n, IURLGenerator $url, IServerContainer $container ) { $this->log = $log; - $this->dbc = $dbc; $this->l = $l10n; $this->url = $url; $this->container = $container; |