From 7cbdfbee24c023176987d24567c52de869b34270 Mon Sep 17 00:00:00 2001 From: Joshua Spence Date: Tue, 10 Feb 2015 08:22:23 +1100 Subject: [PATCH] Remove temporary code Summary: I //think// Maniphest has switched to real edges now. Test Plan: N/A Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D11716 --- .../maniphest/storage/ManiphestTransaction.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/applications/maniphest/storage/ManiphestTransaction.php b/src/applications/maniphest/storage/ManiphestTransaction.php index 7e4b3e5ae8..a05cf1ab13 100644 --- a/src/applications/maniphest/storage/ManiphestTransaction.php +++ b/src/applications/maniphest/storage/ManiphestTransaction.php @@ -536,13 +536,6 @@ final class ManiphestTransaction $new_name); } - case self::TYPE_EDGE: - // TODO: Remove this when we switch to real edges. Just reuse the - // code in the parent; - $clone = clone $this; - $clone->setTransactionType(PhabricatorTransactions::TYPE_EDGE); - return $clone->getTitle(); - case self::TYPE_ATTACH: $old = nonempty($old, array()); $new = nonempty($new, array()); @@ -794,13 +787,6 @@ final class ManiphestTransaction $new_name); } - case self::TYPE_EDGE: - // TODO: Remove this when we switch to real edges. Just reuse the - // code in the parent; - $clone = clone $this; - $clone->setTransactionType(PhabricatorTransactions::TYPE_EDGE); - return $clone->getTitleForFeed(); - case self::TYPE_ATTACH: $old = nonempty($old, array()); $new = nonempty($new, array());