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:
authorJoas Schilling <coding@schilljs.com>2022-08-22 15:15:32 +0300
committerJoas Schilling <coding@schilljs.com>2022-08-22 15:15:32 +0300
commitf4885ee3ba0b97b50bb8bd3be5403d88690c4db5 (patch)
tree4cbc1551f76efe9d48ddfc27858d7cb52c199f70 /apps/user_ldap/lib/Wizard.php
parentef60257110bd850521cfa5d3ff8a1e4dc85b4fcd (diff)
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/user_ldap/lib/Wizard.php')
-rw-r--r--apps/user_ldap/lib/Wizard.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/user_ldap/lib/Wizard.php b/apps/user_ldap/lib/Wizard.php
index da2b92d9873..e85e65a7d70 100644
--- a/apps/user_ldap/lib/Wizard.php
+++ b/apps/user_ldap/lib/Wizard.php
@@ -120,20 +120,6 @@ class Wizard extends LDAPUtility {
return (int)$result;
}
- /**
- * formats the return value of a count operation to the string to be
- * inserted.
- *
- * @param int $count
- * @return string
- */
- private function formatCountResult(int $count): string {
- if ($count > 1000) {
- return '> 1000';
- }
- return (string)$count;
- }
-
public function countGroups() {
$filter = $this->configuration->ldapGroupFilter;