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
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2022-08-24 20:32:35 +0300
commit2dd9f285f4c139f011b081b6a1f7a57c7beafa0e (patch)
tree373ea7de5bed94a0ea6f05ccc18a34f9669806ec
parent1bd60e6df92cddf5703412a80a7ea184d34e8be9 (diff)
Remove unused methodbackport/33667/stable22
Signed-off-by: Joas Schilling <coding@schilljs.com>
-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 3d79f5bec6f..19d0d1e5c74 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;