]> source.dussan.org Git - nextcloud-server.git/commitdiff
Removed unused deprecated methods
authorRoeland Jago Douma <rullzer@owncloud.com>
Thu, 17 Dec 2015 14:31:04 +0000 (15:31 +0100)
committerRoeland Jago Douma <rullzer@owncloud.com>
Thu, 17 Dec 2015 15:18:40 +0000 (16:18 +0100)
lib/private/user.php

index 3c011d5cc814c0132402a3554be8cc0c86aa01b6..e84da5cf843a2170733ca4de3e9e8b1507a7ae62 100644 (file)
@@ -75,44 +75,6 @@ class OC_User {
        // bool, stores if a user want to access a resource anonymously, e.g if he opens a public link
        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
         *