Skip to content

Removed double occurrences from Magento modules. #16644

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public function getMainTable(int $storeId)
public function createTablesForStore(int $storeId)
{
$mainTableName = $this->getMainTable($storeId);
//Create index table for store based on on main replica table
//Create index table for store based on main replica table
//Using main replica table is necessary for backward capability and TableResolver plugin work
$this->createTable(
$this->getTable(AbstractAction::MAIN_INDEX_TABLE . $this->additionalTableSuffix),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ protected function _createItem($label, $value, $count = 0)
}

/**
* Get all product ids from from collection with applied filters
* Get all product ids from collection with applied filters
*
* @return array
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ protected function _saveValueTitles(\Magento\Framework\Model\AbstractModel $obje
}

/**
* Get first col from from first row for option table
* Get first col from first row for option table
*
* @param string $tableName
* @param int $optionId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ protected function _saveValueTitles(AbstractModel $object)
}

/**
* Get first col from from first row for option table
* Get first col from first row for option table
*
* @param string $tableName
* @param int $optionId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function execute()

/**
* Return component referer url
* TODO: Technical dept referer url should be implement as a part of Action configuration in in appropriate way
* TODO: Technical dept referer url should be implement as a part of Action configuration in appropriate way
*
* @return null|string
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function addProductToFilter($product)
}

/**
* Retrieve title for for current store
* Retrieve title for current store
*
* @param int $storeId
* @return $this
Expand All @@ -113,7 +113,7 @@ public function addTitleToResult($storeId = 0)
}

/**
* Retrieve price for for current website
* Retrieve price for current website
*
* @param int $websiteId
* @return $this
Expand Down
4 changes: 2 additions & 2 deletions app/code/Magento/Indexer/Model/ProcessManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function execute($userFunctions)
}

/**
* Execute user functions in in singleThreads mode
* Execute user functions in singleThreads mode
*
* @param \Traversable $userFunctions
*/
Expand All @@ -68,7 +68,7 @@ private function simpleThreadExecute($userFunctions)
}

/**
* Execute user functions in in multiThreads mode
* Execute user functions in multiThreads mode
*
* @param \Traversable $userFunctions
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function execute()

/**
* Return component referrer url
* TODO: Technical dept referrer url should be implement as a part of Action configuration in in appropriate way
* TODO: Technical dept referrer url should be implement as a part of Action configuration in appropriate way
*
* @return null|string
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class Links extends Block
{
/**
* Selector title for for links
* Selector title for links
*
* @var string
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AssertVersionOnGrid extends AbstractConstraint
/*#@-*/

/**
* Assert that that version of extension is correct.
* Assert that version of extension is correct.
*
* @param Grid $grid
* @param Extension $extension
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Magento\Mtf\Constraint\AbstractConstraint;

/**
* Check that that widget with type Recently Viewed Products is present on category page
* Check that widget with type Recently Viewed Products is present on category page
*/
class AssertWidgetRecentlyViewedProducts extends AbstractConstraint
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function testRenderingByDefault()
* Special price should be valid
* FinalPriceBox::hasSpecialPrice should not be call
* Regular price for Configurable product should be rendered for is_product_list = false (product page), but not be
* for for is_product_list = true (list of products)
* for is_product_list = true (list of products)
*
* @param bool $flag
* @param int|bool $count
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function execute(array $messages, InputInterface $input, OutputInterface
}

/**
* Creates Question object from from given array of messages.
* Creates Question object from given array of messages.
*
* @param string[] $messages array of messages
* @return Question
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

/**
* Class TemporaryTableService creates a temporary table in mysql from a Magento\Framework\DB\Select.
* Use this class to create an index with that that you want to query later for quick data access
* Use this class to create an index with that you want to query later for quick data access
*
* @api
* @since 100.2.0
Expand Down
2 changes: 1 addition & 1 deletion lib/web/prototype/windows/README
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ See samples/index.html for more details and go on my web page : http://prototype
- Add Windows.focusedWindow and Windows.closeAll
- Add name to iframe in case of url window
- Clean up code, use _ for private function (just name convention)
- Add Dialog.info function, usefull for for submit or notice info (in Rails)
- Add Dialog.info function, usefull for submit or notice info (in Rails)
- Add minimize and maximize buttons
- Add alert_lite.css without any images
- Debug
Expand Down