From b10d128c598ca0bd9577491cd14e043b49bb4144 Mon Sep 17 00:00:00 2001 From: Joshua Spence Date: Wed, 17 Jun 2015 20:41:52 +1000 Subject: [PATCH] Remove some unused properties Summary: These class properties don't seem to be used. Test Plan: Eyeball it. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13295 --- src/applications/celerity/resources/CelerityResources.php | 2 -- src/applications/phid/storage/PhabricatorPHID.php | 5 ----- 2 files changed, 7 deletions(-) diff --git a/src/applications/celerity/resources/CelerityResources.php b/src/applications/celerity/resources/CelerityResources.php index b7c5cc2486..9536786a6a 100644 --- a/src/applications/celerity/resources/CelerityResources.php +++ b/src/applications/celerity/resources/CelerityResources.php @@ -5,8 +5,6 @@ */ abstract class CelerityResources extends Phobject { - private $map; - abstract public function getName(); abstract public function getResourceData($name); diff --git a/src/applications/phid/storage/PhabricatorPHID.php b/src/applications/phid/storage/PhabricatorPHID.php index 7acacc9475..f47d3c819f 100644 --- a/src/applications/phid/storage/PhabricatorPHID.php +++ b/src/applications/phid/storage/PhabricatorPHID.php @@ -2,11 +2,6 @@ final class PhabricatorPHID extends Phobject { - protected $phid; - protected $phidType; - protected $ownerPHID; - protected $parentPHID; - public static function generateNewPHID($type, $subtype = null) { if (!$type) { throw new Exception(pht('Can not generate PHID with no type.'));