diff --git a/src/infrastructure/query/policy/PhabricatorPolicyAwareQuery.php b/src/infrastructure/query/policy/PhabricatorPolicyAwareQuery.php --- a/src/infrastructure/query/policy/PhabricatorPolicyAwareQuery.php +++ b/src/infrastructure/query/policy/PhabricatorPolicyAwareQuery.php @@ -256,7 +256,6 @@ } if ($visible) { - $this->putObjectsInWorkspace($this->getWorkspaceMapForPage($visible)); $visible = $this->didFilterPage($visible); } @@ -471,27 +470,6 @@ /** - * Convert a result page to a `` map. - * - * @param list Objects. - * @return map Map of objects which can - * be put into the workspace. - * @task workspace - */ - protected function getWorkspaceMapForPage(array $results) { - $map = array(); - foreach ($results as $result) { - $phid = $result->getPHID(); - if ($phid !== null) { - $map[$phid] = $result; - } - } - - return $map; - } - - - /** * Mark PHIDs as in flight. * * PHIDs which are "in flight" are actively being queried for. Using this