aboutsummaryrefslogtreecommitdiff
path: root/app/Services/ImportService.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Services/ImportService.php')
-rw-r--r--app/Services/ImportService.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/Services/ImportService.php b/app/Services/ImportService.php
index 5db640455..4cc38c15c 100644
--- a/app/Services/ImportService.php
+++ b/app/Services/ImportService.php
@@ -4,9 +4,6 @@
* Provide methods to import files.
*/
class FreshRSS_Import_Service {
- /** @var string */
- private $username;
-
/** @var FreshRSS_CategoryDAO */
private $catDAO;
@@ -21,7 +18,6 @@ class FreshRSS_Import_Service {
public function __construct($username) {
require_once(LIB_PATH . '/lib_opml.php');
- $this->username = $username;
$this->catDAO = FreshRSS_Factory::createCategoryDao($username);
$this->feedDAO = FreshRSS_Factory::createFeedDao($username);
}