Skip to content

Commit 82404a8

Browse files
committed
Removed space from return statement
1 parent ada5457 commit 82404a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Full.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ private function switchTables()
413413
private function moveDataFromReplicaTableToReplicaTables(array $dimensions)
414414
{
415415
if (!$dimensions) {
416-
return ;
416+
return;
417417
}
418418
//TODO: need to update logic for run this move only when replica table is not empty
419419
$select = $this->dimensionTableMaintainer->getConnection()->select()->from(

app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CustomOptionPriceModifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function modifyPrice(IndexTableStructure $priceTable, array $entityIds =
9393
{
9494
// no need to run all queries if current products have no custom options
9595
if (!$this->checkIfCustomOptionsExist($priceTable)) {
96-
return ;
96+
return;
9797
}
9898

9999
$connection = $this->getConnection();

0 commit comments

Comments
 (0)