Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove unused method
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Aug 24, 2022
commit d40ae6fd57bf2d6645ce3a73078c7221f3c03107
14 changes: 0 additions & 14 deletions apps/user_ldap/lib/Wizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,20 +120,6 @@ public function countEntries(string $filter, string $type): int {
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;

Expand Down