From d40ae6fd57bf2d6645ce3a73078c7221f3c03107 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 22 Aug 2022 14:15:32 +0200 Subject: [PATCH] Remove unused method Signed-off-by: Joas Schilling --- apps/user_ldap/lib/Wizard.php | 14 -------------- 1 file changed, 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; -- 2.39.5