From 705ff8d33de04b09a31753426850d2c7da9a046a Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 8 Feb 2018 11:40:12 -0800 Subject: [PATCH] Remove `addHighlight()` action view methods Summary: These didn't actually get used by D19033. Test Plan: Grep. Differential Revision: https://secure.phabricator.com/D19034 --- src/view/layout/PhabricatorActionView.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/view/layout/PhabricatorActionView.php b/src/view/layout/PhabricatorActionView.php index d43cc9428b..f6de8eca5b 100644 --- a/src/view/layout/PhabricatorActionView.php +++ b/src/view/layout/PhabricatorActionView.php @@ -21,7 +21,6 @@ final class PhabricatorActionView extends AphrontView { private $order; private $color; private $type; - private $highlight; const TYPE_DIVIDER = 'type-divider'; const TYPE_LABEL = 'label'; @@ -73,15 +72,6 @@ final class PhabricatorActionView extends AphrontView { return $this->href; } - public function setHighlight($highlight) { - $this->highlight = $highlight; - return $this; - } - - public function getHighlight() { - return $this->highlight; - } - public function setIcon($icon) { $this->icon = $icon; return $this;