1
0
Fork 0
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:
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);
} 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();