mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 19:40:55 +01:00
Fix a few Diviner method calls
Summary: I missed these in D13157. Test Plan: Browsed around #diviner. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D13158
This commit is contained in:
parent
32f669d566
commit
0d50c40973
2 changed files with 0 additions and 3 deletions
|
@ -31,8 +31,6 @@ final class DivinerLivePublisher extends DivinerPublisher {
|
||||||
->withNames(array($atom->getName()))
|
->withNames(array($atom->getName()))
|
||||||
->withContexts(array($atom->getContext()))
|
->withContexts(array($atom->getContext()))
|
||||||
->withIndexes(array($this->getAtomSimilarIndex($atom)))
|
->withIndexes(array($this->getAtomSimilarIndex($atom)))
|
||||||
->withIncludeUndocumentable(true)
|
|
||||||
->withIncludeGhosts(true)
|
|
||||||
->executeOne();
|
->executeOne();
|
||||||
|
|
||||||
if ($symbol) {
|
if ($symbol) {
|
||||||
|
|
|
@ -240,7 +240,6 @@ final class DivinerAtomQuery extends PhabricatorCursorPagedPolicyAwareQuery {
|
||||||
if ($child_hashes) {
|
if ($child_hashes) {
|
||||||
$children = id(new DivinerAtomQuery())
|
$children = id(new DivinerAtomQuery())
|
||||||
->setViewer($this->getViewer())
|
->setViewer($this->getViewer())
|
||||||
->withIncludeUndocumentable(true)
|
|
||||||
->withNodeHashes($child_hashes)
|
->withNodeHashes($child_hashes)
|
||||||
->needAtoms($this->needAtoms)
|
->needAtoms($this->needAtoms)
|
||||||
->execute();
|
->execute();
|
||||||
|
|
Loading…
Reference in a new issue