Skip to content
Snippets Groups Projects
Commit 376f4f08 authored by Hervé Donner's avatar Hervé Donner
Browse files

ISAICP-9059: Remove static caching attempt (follow up in ISAICP-8949).

parent 22b425d3
No related branches found
No related tags found
1 merge request!190Release v1.113.0
......@@ -25,13 +25,6 @@ trait GroupTrait {
use OutdatedContentTrait;
/**
* The number of active members.
*
* @var int
*/
protected $activeMemberCount;
/**
* {@inheritdoc}
*/
......@@ -335,10 +328,6 @@ protected function getMembershipManager(): MembershipManagerInterface {
* {@inheritdoc}
*/
public function getActiveMemberCount(): int {
if (isset($this->activeMemberCount)) {
return $this->activeMemberCount;
}
// We're doing a direct database query rather than using methods in OG's
// MembershipManager service since we just need a count, and we need to
// filter out blocked user accounts.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment