Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2016-08-25 22:44:27 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2016-08-25 23:00:18 +0300
commit36481a0a2ac93c265a902608e5c504d627943501 (patch)
treedd3a78a75b450fc91c6a87153a46d1b4ebe76667 /core/Application.php
parent2f03853fb9407e23efb1ea151f53918dc6b5d733 (diff)
Remove unused core wrappers
Diffstat (limited to 'core/Application.php')
-rw-r--r--core/Application.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/core/Application.php b/core/Application.php
index 55bbc49797f..0c69394c979 100644
--- a/core/Application.php
+++ b/core/Application.php
@@ -31,13 +31,11 @@ namespace OC\Core;
use OC\AppFramework\Utility\SimpleContainer;
use OC\AppFramework\Utility\TimeFactory;
-use OC\Core\Controller\AvatarController;
use OC\Core\Controller\LoginController;
use OC\Core\Controller\LostController;
use OC\Core\Controller\TokenController;
use OC\Core\Controller\TwoFactorChallengeController;
use OC\Core\Controller\UserController;
-use OCP\Defaults;
use OCP\AppFramework\App;
use OCP\Util;
@@ -137,33 +135,18 @@ class Application extends App {
$container->registerService('SecureRandom', function(SimpleContainer $c) {
return $c->query('ServerContainer')->getSecureRandom();
});
- $container->registerService('AvatarManager', function(SimpleContainer $c) {
- return $c->query('ServerContainer')->getAvatarManager();
- });
$container->registerService('Session', function(SimpleContainer $c) {
return $c->query('ServerContainer')->getSession();
});
$container->registerService('UserSession', function(SimpleContainer $c) {
return $c->query('ServerContainer')->getUserSession();
});
- $container->registerService('Session', function(SimpleContainer $c) {
- return $c->query('ServerContainer')->getSession();
- });
- $container->registerService('Cache', function(SimpleContainer $c) {
- return $c->query('ServerContainer')->getCache();
- });
- $container->registerService('UserFolder', function(SimpleContainer $c) {
- return $c->query('ServerContainer')->getUserFolder();
- });
$container->registerService('Defaults', function(SimpleContainer $c) {
return $c->query('ServerContainer')->getThemingDefaults();
});
$container->registerService('Mailer', function(SimpleContainer $c) {
return $c->query('ServerContainer')->getMailer();
});
- $container->registerService('Logger', function(SimpleContainer $c) {
- return $c->query('ServerContainer')->getLogger();
- });
$container->registerService('TimeFactory', function(SimpleContainer $c) {
return new TimeFactory();
});
@@ -173,9 +156,6 @@ class Application extends App {
$container->registerService('TwoFactorAuthManager', function(SimpleContainer $c) {
return $c->query('ServerContainer')->getTwoFactorAuthManager();
});
- $container->registerService('OC\CapabilitiesManager', function(SimpleContainer $c) {
- return $c->query('ServerContainer')->getCapabilitiesManager();
- });
}
}