summaryrefslogtreecommitdiffstats
path: root/lib/Cron/Cache.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Cron/Cache.php')
-rw-r--r--lib/Cron/Cache.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/Cron/Cache.php b/lib/Cron/Cache.php
index 9932e3c1..2552766f 100644
--- a/lib/Cron/Cache.php
+++ b/lib/Cron/Cache.php
@@ -36,10 +36,8 @@ use OC\BackgroundJob\TimedJob;
use OCA\Social\AppInfo\Application;
use OCA\Social\Service\AccountService;
use OCA\Social\Service\CacheActorService;
-use OCA\Social\Service\ConfigService;
use OCA\Social\Service\DocumentService;
use OCA\Social\Service\HashtagService;
-use OCA\Social\Service\MiscService;
use OCP\AppFramework\QueryException;
@@ -63,12 +61,6 @@ class Cache extends TimedJob {
/** @var HashtagService */
private $hashtagService;
- /** @var ConfigService */
- private $configService;
-
- /** @var MiscService */
- private $miscService;
-
/**
* Cache constructor.
@@ -91,8 +83,6 @@ class Cache extends TimedJob {
$this->cacheActorService = $c->query(CacheActorService::class);
$this->documentService = $c->query(DocumentService::class);
$this->hashtagService = $c->query(HashtagService::class);
- $this->configService = $c->query(ConfigService::class);
- $this->miscService = $c->query(MiscService::class);
$this->manageCache();
}