Skip to content

Commit 8f9246f

Browse files
authored
Correct the operation in massDelete
1 parent 7bcb47e commit 8f9246f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Catalog/Controller/Adminhtml/Product/MassDelete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function __construct(
6666
$this->collectionFactory = $collectionFactory;
6767
$this->productRepository = $productRepository ?:
6868
\Magento\Framework\App\ObjectManager::getInstance()->create(ProductRepositoryInterface::class);
69-
$this->logger = $logger ??
69+
$this->logger = $logger ?:
7070
\Magento\Framework\App\ObjectManager::getInstance()->create(LoggerInterface::class);
7171
parent::__construct($context, $productBuilder);
7272
}

0 commit comments

Comments
 (0)