summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2012-06-07 13:39:15 +0200
committerArthur Schiwon <blizzz@owncloud.com>2012-06-07 13:39:42 +0200
commit44880ab3fa31d8b0ad1475d277315e57407f9341 (patch)
tree69c33bb42828eca5878203e63e7234260714fc1e /apps
parent6894882ca95033882526306b6a6794f41706eec2 (diff)
downloadnextcloud-server-44880ab3fa31d8b0ad1475d277315e57407f9341.tar.gz
nextcloud-server-44880ab3fa31d8b0ad1475d277315e57407f9341.zip
ldap: remove unused private functions
Diffstat (limited to 'apps')
-rw-r--r--apps/user_ldap/lib_ldap.php24
1 files changed, 0 insertions, 24 deletions
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
@@ -330,30 +330,6 @@ class OC_LDAP {
}
/**
- * @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
* @param $ocname the name to use in ownCloud