Skip to content

Commit f93bdc1

Browse files
committed
Fix a typo in method name
1 parent 14eeea2 commit f93bdc1

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/BundleImportExport/Model/Import/Product/Type

1 file changed

+2
-2
lines changed

app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ protected function populateSelectionTemplate($selection, $optionId, $parentId, $
323323
*
324324
* @return \Magento\CatalogImportExport\Model\Import\Product\Type\AbstractType
325325
*/
326-
protected function retrieveProducsByCachedSkus()
326+
protected function retrieveProductsByCachedSkus()
327327
{
328328
$this->_cachedSkuToProducts = $this->connection->fetchPairs(
329329
$this->connection->select()->from(
@@ -368,7 +368,7 @@ public function saveData()
368368
$this->parseSelections($rowData, $productData[$this->getProductEntityLinkField()]);
369369
}
370370
if (!empty($this->_cachedOptions)) {
371-
$this->retrieveProducsByCachedSkus();
371+
$this->retrieveProductsByCachedSkus();
372372
$this->populateExistingOptions();
373373
$this->insertOptions();
374374
$this->insertSelections();

0 commit comments

Comments
 (0)