mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 12:30:56 +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:
parent
a115810912
commit
bd3c239d5a
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue