diff options
author | Joas Schilling <coding@schilljs.com> | 2022-08-22 14:15:32 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-08-22 14:15:32 +0200 |
commit | f4885ee3ba0b97b50bb8bd3be5403d88690c4db5 (patch) | |
tree | 4cbc1551f76efe9d48ddfc27858d7cb52c199f70 /apps/user_ldap | |
parent | ef60257110bd850521cfa5d3ff8a1e4dc85b4fcd (diff) | |
download | nextcloud-server-f4885ee3ba0b97b50bb8bd3be5403d88690c4db5.tar.gz nextcloud-server-f4885ee3ba0b97b50bb8bd3be5403d88690c4db5.zip |
Remove unused method
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/lib/Wizard.php | 14 |
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; |