summaryrefslogtreecommitdiffstats
path: root/lib/private/Repair/ClearFrontendCaches.php
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2022-05-04 08:48:33 +0200
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-05-13 16:10:45 +0200
commit9a9409e31583c0fdd7c0bfe67f5f9177c7651830 (patch)
treee7e773ec86c9aca5d0939fc4e1df8c8b59f09f63 /lib/private/Repair/ClearFrontendCaches.php
parentf4058a2432f748ffff6d7e45f2fb79ca383f8dd1 (diff)
downloadnextcloud-server-9a9409e31583c0fdd7c0bfe67f5f9177c7651830.tar.gz
nextcloud-server-9a9409e31583c0fdd7c0bfe67f5f9177c7651830.zip
Remove SCSSCacher
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'lib/private/Repair/ClearFrontendCaches.php')
-rw-r--r--lib/private/Repair/ClearFrontendCaches.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/private/Repair/ClearFrontendCaches.php b/lib/private/Repair/ClearFrontendCaches.php
index 96a7833fecc..47f037fd626 100644
--- a/lib/private/Repair/ClearFrontendCaches.php
+++ b/lib/private/Repair/ClearFrontendCaches.php
@@ -25,7 +25,6 @@
namespace OC\Repair;
use OC\Template\JSCombiner;
-use OC\Template\SCSSCacher;
use OCP\ICacheFactory;
use OCP\Migration\IOutput;
use OCP\Migration\IRepairStep;
@@ -35,17 +34,12 @@ class ClearFrontendCaches implements IRepairStep {
/** @var ICacheFactory */
protected $cacheFactory;
- /** @var SCSSCacher */
- protected $scssCacher;
-
/** @var JSCombiner */
protected $jsCombiner;
public function __construct(ICacheFactory $cacheFactory,
- SCSSCacher $SCSSCacher,
JSCombiner $JSCombiner) {
$this->cacheFactory = $cacheFactory;
- $this->scssCacher = $SCSSCacher;
$this->jsCombiner = $JSCombiner;
}
@@ -59,9 +53,6 @@ class ClearFrontendCaches implements IRepairStep {
$c->clear();
$output->info('Image cache cleared');
- $this->scssCacher->resetCache();
- $output->info('SCSS cache cleared');
-
$this->jsCombiner->resetCache();
$output->info('JS cache cleared');
} catch (\Exception $e) {