Typo fix: "the the" -> "the"
Bug: T201491 Change-Id: I4e347afbfdd1bbac20e0ac00b9e6a046e7c49a49
This commit is contained in:
parent
7b2a1da28c
commit
79e17ab2ff
1 changed files with 2 additions and 2 deletions
|
|
@ -90,7 +90,7 @@ class DeferredUpdatesScope {
|
||||||
* @param int $stage One of DeferredUpdates::STAGES
|
* @param int $stage One of DeferredUpdates::STAGES
|
||||||
*/
|
*/
|
||||||
public function addUpdate( DeferrableUpdate $update, $stage ) {
|
public function addUpdate( DeferrableUpdate $update, $stage ) {
|
||||||
// Handle the case where the the specified stage must have already passed
|
// Handle the case where the specified stage must have already passed
|
||||||
$stageEffective = max( $stage, $this->activeStage );
|
$stageEffective = max( $stage, $this->activeStage );
|
||||||
|
|
||||||
$queue =& $this->queueByStage[$stageEffective];
|
$queue =& $this->queueByStage[$stageEffective];
|
||||||
|
|
@ -186,7 +186,7 @@ class DeferredUpdatesScope {
|
||||||
// Do everything, all the way to the last "defer until" stage
|
// Do everything, all the way to the last "defer until" stage
|
||||||
$activeStage = DeferredUpdates::STAGES[count( DeferredUpdates::STAGES ) - 1];
|
$activeStage = DeferredUpdates::STAGES[count( DeferredUpdates::STAGES ) - 1];
|
||||||
} else {
|
} else {
|
||||||
// Handle the case where the the specified stage must have already passed
|
// Handle the case where the specified stage must have already passed
|
||||||
$activeStage = max( $stage, $this->activeStage );
|
$activeStage = max( $stage, $this->activeStage );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue