aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/user.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2015-12-17 15:31:04 +0100
committerRoeland Jago Douma <rullzer@owncloud.com>2015-12-17 16:18:40 +0100
commit9201b9713ed21566f90628d41c49056ca5314096 (patch)
tree9f548cb9084b41698492c1579478507ce33cda10 /lib/private/user.php
parent835911bce5cf8da9ce6d4021f0836b11d6b97d31 (diff)
downloadnextcloud-server-9201b9713ed21566f90628d41c49056ca5314096.tar.gz
nextcloud-server-9201b9713ed21566f90628d41c49056ca5314096.zip
Removed unused deprecated methods
Diffstat (limited to 'lib/private/user.php')
-rw-r--r--lib/private/user.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/lib/private/user.php b/lib/private/user.php
index 3c011d5cc81..e84da5cf843 100644
--- a/lib/private/user.php
+++ b/lib/private/user.php
@@ -76,44 +76,6 @@ class OC_User {
private static $incognitoMode = false;
/**
- * registers backend
- *
- * @param string $backend name of the backend
- * @deprecated Add classes by calling OC_User::useBackend() with a class instance instead
- * @return bool
- *
- * Makes a list of backends that can be used by other modules
- */
- public static function registerBackend($backend) {
- self::$_backends[] = $backend;
- return true;
- }
-
- /**
- * gets available backends
- *
- * @deprecated
- * @return array an array of backends
- *
- * Returns the names of all backends.
- */
- public static function getBackends() {
- return self::$_backends;
- }
-
- /**
- * gets used backends
- *
- * @deprecated
- * @return array an array of backends
- *
- * Returns the names of all used backends.
- */
- public static function getUsedBackends() {
- return array_keys(self::$_usedBackends);
- }
-
- /**
* Adds the backend to the list of used backends
*
* @param string|OC_User_Interface $backend default: database The backend to use for user management