remove useless code

This commit is contained in:
Simon Vieille 2020-11-20 16:08:24 +01:00
parent ae6f7552dc
commit 44c27053cb
Signed by: deblan
GPG key ID: 03383D15A1D31745

View file

@ -32,12 +32,10 @@ class Config
*/
private $secureRandom;
public function __construct(IConfig $config, ISecureRandom $secureRandom, IGroupManager $groupManager, ITimeFactory $timeFactory)
public function __construct(IConfig $config, IGroupManager $groupManager)
{
$this->config = $config;
$this->secureRandom = $secureRandom;
$this->groupManager = $groupManager;
$this->timeFactory = $timeFactory;
}
/**