mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Removed unused loadGitLocalRefs() from PhabricatorRepositoryPullEngine
Summary: rP2b0ad243d179f81baad24ccd9748a4ba59017d25 introduced `private function loadGitLocalRefs()`. In rPe910c76e65e54a439a0af4735ae89c70076673d5, the only call to `loadGitLocalRefs()` was removed, using `loadGitRemoteRefs()` to load (and compare) both remote and local refs. Thus remove this unused method. Test Plan: Read/grep the code in `PhabricatorRepositoryPullEngine`. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25718
This commit is contained in:
parent
5a454cef8a
commit
03092ca422
1 changed files with 0 additions and 16 deletions
|
@ -602,22 +602,6 @@ final class PhabricatorRepositoryPullEngine
|
||||||
return $map;
|
return $map;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function loadGitLocalRefs(PhabricatorRepository $repository) {
|
|
||||||
$refs = id(new DiffusionLowLevelGitRefQuery())
|
|
||||||
->setRepository($repository)
|
|
||||||
->execute();
|
|
||||||
|
|
||||||
$map = array();
|
|
||||||
foreach ($refs as $ref) {
|
|
||||||
$fields = $ref->getRawFields();
|
|
||||||
$map[idx($fields, 'refname')] = $ref->getCommitIdentifier();
|
|
||||||
}
|
|
||||||
|
|
||||||
ksort($map);
|
|
||||||
|
|
||||||
return $map;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function logRefDifferences(array $remote, array $local) {
|
private function logRefDifferences(array $remote, array $local) {
|
||||||
$all = $local + $remote;
|
$all = $local + $remote;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue