Skip to content

Commit b272c4e

Browse files
committed
Removed unused properties
1 parent 5181674 commit b272c4e

File tree

1 file changed

+0
-17
lines changed
  • app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer

1 file changed

+0
-17
lines changed

app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer/Storage.php

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -44,30 +44,13 @@ class Storage
4444
protected $_byPagesIterator;
4545

4646
/**
47-
* @var CustomerCollectionFactory
48-
*/
49-
private $customerCollectionFactory;
50-
51-
/**
52-
* Customer collection.
53-
*
54-
* @var \Magento\Customer\Model\ResourceModel\Customer\Collection
55-
*/
56-
private $_customerCollection;
57-
58-
/**
59-
* @param CustomerCollectionFactory $collectionFactory
6047
* @param CollectionByPagesIteratorFactory $colIteratorFactory
6148
* @param array $data
6249
*/
6350
public function __construct(
64-
CustomerCollectionFactory $collectionFactory,
6551
CollectionByPagesIteratorFactory $colIteratorFactory,
6652
array $data = []
6753
) {
68-
$this->_customerCollection = isset(
69-
$data['customer_collection']
70-
) ? $data['customer_collection'] : $collectionFactory->create();
7154
$this->_pageSize = isset($data['page_size']) ? $data['page_size'] : 0;
7255
$this->_byPagesIterator = isset(
7356
$data['collection_by_pages_iterator']

0 commit comments

Comments
 (0)