private function getCompleteHandles(PhabricatorHandleList $handles)
 {
     $phids = array();
     foreach ($handles as $phid => $handle) {
         if (!$handle->isComplete()) {
             continue;
         }
         $phids[] = $phid;
     }
     return $handles->newSublist($phids);
 }