1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-13 00:01:03 +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:
Austin McKinley 2018-09-28 13:40:26 -07:00
parent 8065433ee8
commit dbf2302b6c

View file

@ -208,7 +208,7 @@ final class DiffusionRepositoryClusterEngine extends Phobject {
$this->synchronizeWorkingCopyFromDevices($fetchable); $this->synchronizeWorkingCopyFromDevices($fetchable);
} else { } else {
$this->synchornizeWorkingCopyFromRemote(); $this->synchronizeWorkingCopyFromRemote();
} }
PhabricatorRepositoryWorkingCopyVersion::updateVersion( PhabricatorRepositoryWorkingCopyVersion::updateVersion(
@ -609,7 +609,7 @@ final class DiffusionRepositoryClusterEngine extends Phobject {
/** /**
* @task internal * @task internal
*/ */
private function synchornizeWorkingCopyFromRemote() { private function synchronizeWorkingCopyFromRemote() {
$repository = $this->getRepository(); $repository = $this->getRepository();
$device = AlmanacKeys::getLiveDevice(); $device = AlmanacKeys::getLiveDevice();