Example #1
0
 /** Remove the given tags from the list of known tags for the given remote root. */
 public void removeTags(ICVSFolder project, CVSTag[] tags) throws CVSException {
   RepositoryRoot root = getRepositoryRootFor(project);
   String remotePath = RepositoryRoot.getRemotePathFor(project);
   root.removeTags(remotePath, tags);
   broadcastRepositoryChange(root);
 }