/**
  * Exclude object from result
  *
  * @param   ChildAssignedRoleGlobal $assignedRoleGlobal Object to remove from the list of results
  *
  * @return $this|ChildAssignedRoleGlobalQuery The current query, for fluid interface
  */
 public function prune($assignedRoleGlobal = null)
 {
     if ($assignedRoleGlobal) {
         $this->addUsingAlias(AssignedRoleGlobalTableMap::COL_ID, $assignedRoleGlobal->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }