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