From 93d7b0122252c3f4d7dbf4f065e9d5db1024d9f8 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 17 Feb 2016 17:13:33 -0800 Subject: [PATCH] Remove uncalled DiffusionRequest->getCallsign() Summary: Ref T4245. This has no callers. Test Plan: - Ran `git grep -i 'getCallsign('` and visually verified that no callers could reasonably be `DiffusionRequest` objects (there are only 23 remaining sites, and about half are `$this->...` in `PhabricatorRepository`. - Browsed around directory/file/branch/content/diff/etc pages in Diffusion. Reviewers: chad, avivey Reviewed By: avivey Maniphest Tasks: T4245 Differential Revision: https://secure.phabricator.com/D15295 --- src/applications/diffusion/request/DiffusionRequest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/applications/diffusion/request/DiffusionRequest.php b/src/applications/diffusion/request/DiffusionRequest.php index 8d326b81bc..f86170f129 100644 --- a/src/applications/diffusion/request/DiffusionRequest.php +++ b/src/applications/diffusion/request/DiffusionRequest.php @@ -243,10 +243,6 @@ abstract class DiffusionRequest extends Phobject { return $this->repository; } - public function getCallsign() { - return $this->getRepository()->getCallsign(); - } - public function setPath($path) { $this->path = $path; return $this;