diff options
author | Joas Schilling <coding@schilljs.com> | 2019-03-20 12:22:15 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-03-20 15:16:13 +0100 |
commit | 942281a48e2791cf6c46de758985e62806bed363 (patch) | |
tree | ddd253d4c3ad9449cd44fdc22a0b81e3e82f10b3 /apps/updatenotification/lib | |
parent | 2d00e2bbe77ab9bb150555e5cef7a269c8a25b4a (diff) | |
download | nextcloud-server-942281a48e2791cf6c46de758985e62806bed363.tar.gz nextcloud-server-942281a48e2791cf6c46de758985e62806bed363.zip |
Remove unused IUserSession
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/updatenotification/lib')
-rw-r--r-- | apps/updatenotification/lib/Settings/Admin.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/updatenotification/lib/Settings/Admin.php b/apps/updatenotification/lib/Settings/Admin.php index b1abdd874d1..571a8e9f906 100644 --- a/apps/updatenotification/lib/Settings/Admin.php +++ b/apps/updatenotification/lib/Settings/Admin.php @@ -45,8 +45,6 @@ class Admin implements ISettings { private $groupManager; /** @var IDateTimeFormatter */ private $dateTimeFormatter; - /** @var IUserSession */ - private $session; /** @var IFactory */ private $l10nFactory; @@ -55,14 +53,12 @@ class Admin implements ISettings { UpdateChecker $updateChecker, IGroupManager $groupManager, IDateTimeFormatter $dateTimeFormatter, - IUserSession $session, IFactory $l10nFactory ) { $this->config = $config; $this->updateChecker = $updateChecker; $this->groupManager = $groupManager; $this->dateTimeFormatter = $dateTimeFormatter; - $this->session = $session; $this->l10nFactory = $l10nFactory; } |