From bd3c239d5aada68a31db5742bbb8ec099074a561 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 17 Jul 2014 17:30:41 -0700 Subject: [PATCH] Remove a stray `setActor()` on EdgeEditor Summary: These got removed recently but I missed one callsite. Test Plan: Used `git grep` to double check all other callsites. Reviewers: joshuaspence Reviewed By: joshuaspence Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D9973 --- .../editor/PhabricatorApplicationTransactionEditor.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php index c7426e2269..44a9dc48d5 100644 --- a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php +++ b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php @@ -2342,8 +2342,7 @@ abstract class PhabricatorApplicationTransactionEditor return; } - $editor = id(new PhabricatorEdgeEditor()) - ->setActor($this->getActor()); + $editor = new PhabricatorEdgeEditor(); $src = $object->getPHID(); $type = PhabricatorEdgeConfig::TYPE_OBJECT_HAS_FILE;