Skip to content

Commit 10060fb

Browse files
committed
MC-38168: Manual Indexer after Merchandising - Empty Catalog/ Number of products incorrect
1 parent b5fb919 commit 10060fb

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

app/code/Magento/Indexer/Model/Processor.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@ class Processor
4242
*/
4343
protected $mviewProcessor;
4444

45-
/**
46-
* @var WorkingStateProvider
47-
*/
48-
private $workingStateProvider;
49-
5045
/**
5146
* @var MakeSharedIndexValid
5247
*/
@@ -57,23 +52,20 @@ class Processor
5752
* @param IndexerInterfaceFactory $indexerFactory
5853
* @param Indexer\CollectionFactory $indexersFactory
5954
* @param ProcessorInterface $mviewProcessor
60-
* @param WorkingStateProvider $workingStateProvider
6155
* @param MakeSharedIndexValid|null $makeSharedValid
6256
*/
6357
public function __construct(
6458
ConfigInterface $config,
6559
IndexerInterfaceFactory $indexerFactory,
6660
Indexer\CollectionFactory $indexersFactory,
6761
ProcessorInterface $mviewProcessor,
68-
WorkingStateProvider $workingStateProvider,
6962
MakeSharedIndexValid $makeSharedValid = null
7063
) {
7164
$this->config = $config;
7265
$this->indexerFactory = $indexerFactory;
7366
$this->indexersFactory = $indexersFactory;
7467
$this->mviewProcessor = $mviewProcessor;
7568
$this->makeSharedValid = $makeSharedValid ?: ObjectManager::getInstance()->get(MakeSharedIndexValid::class);
76-
$this->workingStateProvider = $workingStateProvider;
7769
}
7870

7971
/**

0 commit comments

Comments
 (0)