mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 05:50:55 +01:00
Fix self-cancelling typo
Summary: Ref D18268. This typo cancelled itself out, and I can't find any other callers. Test Plan: arc unit Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D19718
This commit is contained in:
parent
8065433ee8
commit
dbf2302b6c
1 changed files with 2 additions and 2 deletions
|
@ -208,7 +208,7 @@ final class DiffusionRepositoryClusterEngine extends Phobject {
|
|||
|
||||
$this->synchronizeWorkingCopyFromDevices($fetchable);
|
||||
} else {
|
||||
$this->synchornizeWorkingCopyFromRemote();
|
||||
$this->synchronizeWorkingCopyFromRemote();
|
||||
}
|
||||
|
||||
PhabricatorRepositoryWorkingCopyVersion::updateVersion(
|
||||
|
@ -609,7 +609,7 @@ final class DiffusionRepositoryClusterEngine extends Phobject {
|
|||
/**
|
||||
* @task internal
|
||||
*/
|
||||
private function synchornizeWorkingCopyFromRemote() {
|
||||
private function synchronizeWorkingCopyFromRemote() {
|
||||
$repository = $this->getRepository();
|
||||
$device = AlmanacKeys::getLiveDevice();
|
||||
|
||||
|
|
Loading…
Reference in a new issue