From: Arthur Schiwon Date: Thu, 7 Jun 2012 11:39:15 +0000 (+0200) Subject: ldap: remove unused private functions X-Git-Tag: v4.5.0beta1~74^2~423^2~14 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=44880ab3fa31d8b0ad1475d277315e57407f9341;p=nextcloud-server.git ldap: remove unused private functions --- diff --git a/apps/user_ldap/lib_ldap.php b/apps/user_ldap/lib_ldap.php index 753243f2c4a..8ca5c978b3b 100644 --- a/apps/user_ldap/lib_ldap.php +++ b/apps/user_ldap/lib_ldap.php @@ -329,30 +329,6 @@ class OC_LDAP { return $query->execute()->fetchAll(); } - /** - * @brief inserts a new group into the mappings table - * @param $dn the record in question - * @param $ocname the name to use in ownCloud - * @returns true on success, false otherwise - * - * inserts a new group into the mappings table - */ - static private function mapGroup($dn, $ocname) { - return self::mapComponent($dn, $ocname, false); - } - - /** - * @brief inserts a new user into the mappings table - * @param $dn the record in question - * @param $ocname the name to use in ownCloud - * @returns true on success, false otherwise - * - * inserts a new user into the mappings table - */ - static private function mapUser($dn, $ocname) { - return self::mapComponent($dn, $ocname, true); - } - /** * @brief inserts a new user or group into the mappings table * @param $dn the record in question