From d18d323f214face6d2b6c3dae54a2dd3f086550b Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 13 Feb 2018 21:40:38 +0100 Subject: Remove fromMailAddress from MailSettingsController Was removed in https://github.com/nextcloud/server/pull/4379 (0a54d5a) and https://github.com/nextcloud/server/pull/4380 (bae64e8) Signed-off-by: Morris Jobke --- settings/Controller/MailSettingsController.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'settings') diff --git a/settings/Controller/MailSettingsController.php b/settings/Controller/MailSettingsController.php index 22e2662a216..d1ceb14a63c 100644 --- a/settings/Controller/MailSettingsController.php +++ b/settings/Controller/MailSettingsController.php @@ -47,8 +47,6 @@ class MailSettingsController extends Controller { private $userSession; /** @var IMailer */ private $mailer; - /** @var string */ - private $defaultMailAddress; /** * @param string $appName @@ -57,21 +55,18 @@ class MailSettingsController extends Controller { * @param IConfig $config * @param IUserSession $userSession * @param IMailer $mailer - * @param string $fromMailAddress */ public function __construct($appName, IRequest $request, IL10N $l10n, IConfig $config, IUserSession $userSession, - IMailer $mailer, - $fromMailAddress) { + IMailer $mailer) { parent::__construct($appName, $request); $this->l10n = $l10n; $this->config = $config; $this->userSession = $userSession; $this->mailer = $mailer; - $this->defaultMailAddress = $fromMailAddress; } /** -- cgit v1.2.3