diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-19 15:04:23 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-19 15:04:23 +0100 |
commit | c5cb3bb6655fad45f6f7e52ac65c13be6e96b66d (patch) | |
tree | 09417f01054820bef63308ce0ce1d8a8ee83d350 | |
parent | 4a21ce27ffd3883dd2c08d45b0258511469aa74b (diff) | |
download | nextcloud-server-c5cb3bb6655fad45f6f7e52ac65c13be6e96b66d.tar.gz nextcloud-server-c5cb3bb6655fad45f6f7e52ac65c13be6e96b66d.zip |
Do not use the deprecated service name
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r-- | apps/files_external/lib/AppInfo/Application.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/files_external/lib/AppInfo/Application.php b/apps/files_external/lib/AppInfo/Application.php index 8ab9a56f3af..761eeff113f 100644 --- a/apps/files_external/lib/AppInfo/Application.php +++ b/apps/files_external/lib/AppInfo/Application.php @@ -83,10 +83,6 @@ class Application extends App implements IBackendProvider, IAuthMechanismProvide $container = $this->getContainer(); - $container->registerService(IUserMountCache::class, function (IAppContainer $c) { - return $c->getServer()->query('UserMountCache'); - }); - /** @var BackendService $backendService */ $backendService = $container->query(BackendService::class); $backendService->registerBackendProvider($this); |