aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-02-20 10:16:59 +0100
committerGitHub <noreply@github.com>2018-02-20 10:16:59 +0100
commitcf83eb5e77313c3a820cd1e808c83e0991b9d6a0 (patch)
tree13ced98982664ef5a60986915996363af1d90acd /core/Controller
parentc48332a14fe4e367e52b3fb2f53e4f58a47a7b66 (diff)
parentd18d323f214face6d2b6c3dae54a2dd3f086550b (diff)
downloadnextcloud-server-cf83eb5e77313c3a820cd1e808c83e0991b9d6a0.tar.gz
nextcloud-server-cf83eb5e77313c3a820cd1e808c83e0991b9d6a0.zip
Merge pull request #8336 from nextcloud/cleanup-unused-parameter
Cleanup unused parameter
Diffstat (limited to 'core/Controller')
-rw-r--r--core/Controller/AutoCompleteController.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/core/Controller/AutoCompleteController.php b/core/Controller/AutoCompleteController.php
index 1619f9b9edd..93ab9291322 100644
--- a/core/Controller/AutoCompleteController.php
+++ b/core/Controller/AutoCompleteController.php
@@ -27,7 +27,6 @@ use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\DataResponse;
use OCP\Collaboration\AutoComplete\IManager;
use OCP\Collaboration\Collaborators\ISearch;
-use OCP\IConfig;
use OCP\IRequest;
use OCP\Share;
@@ -36,21 +35,17 @@ class AutoCompleteController extends Controller {
private $collaboratorSearch;
/** @var IManager */
private $autoCompleteManager;
- /** @var IConfig */
- private $config;
public function __construct(
$appName,
IRequest $request,
ISearch $collaboratorSearch,
- IManager $autoCompleteManager,
- IConfig $config
+ IManager $autoCompleteManager
) {
parent::__construct($appName, $request);
$this->collaboratorSearch = $collaboratorSearch;
$this->autoCompleteManager = $autoCompleteManager;
- $this->config = $config;
}
/**