Remove unused method

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2022-08-22 14:15:32 +02:00 committed by backportbot-nextcloud[bot]
parent 3af407f364
commit 2d748c928e

View 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;