]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove unused method 33667/head
authorJoas Schilling <coding@schilljs.com>
Mon, 22 Aug 2022 12:15:32 +0000 (14:15 +0200)
committerJoas Schilling <coding@schilljs.com>
Wed, 24 Aug 2022 07:28:47 +0000 (09:28 +0200)
Signed-off-by: Joas Schilling <coding@schilljs.com>
apps/user_ldap/lib/Wizard.php

index da2b92d98738f9c24b8d41015e5c7de57f901c8a..e85e65a7d70f9321c302bb0b406013c8d575122a 100644 (file)
@@ -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;