1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-20 04:20:55 +01:00

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
This commit is contained in:
epriestley 2014-07-17 17:30:41 -07:00
parent a115810912
commit bd3c239d5a

View file

@ -2342,8 +2342,7 @@ abstract class PhabricatorApplicationTransactionEditor
return; return;
} }
$editor = id(new PhabricatorEdgeEditor()) $editor = new PhabricatorEdgeEditor();
->setActor($this->getActor());
$src = $object->getPHID(); $src = $object->getPHID();
$type = PhabricatorEdgeConfig::TYPE_OBJECT_HAS_FILE; $type = PhabricatorEdgeConfig::TYPE_OBJECT_HAS_FILE;