summaryrefslogtreecommitdiffstats
path: root/lib/Service/OpmlService.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/OpmlService.php')
-rw-r--r--lib/Service/OpmlService.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Service/OpmlService.php b/lib/Service/OpmlService.php
index ea570cf68..932b5c9a5 100644
--- a/lib/Service/OpmlService.php
+++ b/lib/Service/OpmlService.php
@@ -30,11 +30,6 @@ class OpmlService
private $feedService;
/**
- * @var ItemService
- */
- private $itemService;
-
- /**
* @var OPMLExporter
*/
private $exporter;
@@ -42,12 +37,10 @@ class OpmlService
public function __construct(
FolderServiceV2 $folderService,
FeedServiceV2 $feedService,
- ItemServiceV2 $itemService,
OPMLExporter $exporter
) {
$this->folderService = $folderService;
$this->feedService = $feedService;
- $this->itemService = $itemService;
$this->exporter = $exporter;
}