mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-21 22:32: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:
parent
9a198ffcc5
commit
6e24e10bdb
3 changed files with 0 additions and 12 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue