Skip to content

Commit a02bf03

Browse files
Removed @see references from comments
1 parent a021d5f commit a02bf03

File tree

1 file changed

+0
-6
lines changed
  • app/code/Magento/CatalogImportExport/Model/Import

1 file changed

+0
-6
lines changed

app/code/Magento/CatalogImportExport/Model/Import/Product.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1561,10 +1561,6 @@ protected function _saveProducts()
15611561
}
15621562
$rowScope = $this->getRowScope($rowData);
15631563

1564-
/**
1565-
* Only populate URL KEY if a value has been provided.
1566-
* @see https://github.com/magento/magento2/issues/17023
1567-
*/
15681564
if ($urlKey = $this->getUrlKey($rowData)) {
15691565
$rowData[self::URL_KEY] = $urlKey;
15701566
}
@@ -2416,7 +2412,6 @@ private function isNeedToValidateUrlKey($rowData)
24162412
* If the product exists, assume it already has a URL Key and even
24172413
* if a name is provided in the import data, it should not be used
24182414
* to overwrite that existing URL Key the product already has.
2419-
* @see https://github.com/magento/magento2/issues/17023
24202415
*/
24212416
$isSkuExist = $this->isSkuExist($rowData[self::COL_SKU]);
24222417
if ($isSkuExist && !array_key_exists(self::URL_KEY, $rowData)) {
@@ -2739,7 +2734,6 @@ protected function getUrlKey($rowData)
27392734
/**
27402735
* If the product already exists, do not overwrite its
27412736
* URL Key with a value generated from the provided name.
2742-
* @see https://github.com/magento/magento2/issues/17023
27432737
*/
27442738
if ($this->isSkuExist($rowData[self::COL_SKU])) {
27452739
return false;

0 commit comments

Comments
 (0)