1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 06:42:41 +01:00

Remove obsolete definitions of "defineHardpoints()" in older Ref objects

Summary: Ref T13490. A few older "defineHardpoint()" calls are sticking around. They no longer have callers; get rid of them.

Test Plan: Grepped for this symbol, no hits.

Maniphest Tasks: T13490

Differential Revision: https://secure.phabricator.com/D21087
This commit is contained in:
epriestley 2020-04-11 15:26:12 -07:00
parent 9a198ffcc5
commit 6e24e10bdb
3 changed files with 0 additions and 12 deletions

View file

@ -10,10 +10,6 @@ final class ArcanistBrowseURIRef
return pht('Browse URI "%s"', $this->getURI());
}
public function defineHardpoints() {
return array();
}
public function setURI($uri) {
$this->uri = $uri;
return $this;

View file

@ -10,10 +10,6 @@ final class ArcanistRepositoryRef
return pht('Remote Repository');
}
public function defineHardpoints() {
return array();
}
public function setPHID($phid) {
$this->phid = $phid;
return $this;

View file

@ -10,10 +10,6 @@ final class ArcanistRevisionRef
return pht('Revision %s', $this->getMonogram());
}
public function defineHardpoints() {
return array();
}
public static function newFromConduit(array $dict) {
$ref = new self();
$ref->parameters = $dict;