/**
  * (non-PHPdoc)
  * @see svnadmin\core\interfaces.IPathsEditProvider::removeGroupFromAllAccessPaths()
  */
 public function removeGroupFromAllAccessPaths($objGroup)
 {
     $paths = $this->m_authfile->repositoryPathsOfGroup($objGroup->name);
     for ($i = 0; $i < count($paths); $i++) {
         $this->m_authfile->removeGroupFromRepository($objGroup->name, $paths[$i]);
     }
     return true;
 }