clearcase-server/src/jetbrains/buildServer/buildTriggers/vcs/clearcase/versionTree/Version.java [106:118]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Branch getInheritedBranchByName(final String brancheName) {
    for (Branch inheritedBranche : myInheritedBranches) {
      if (brancheName.equals(inheritedBranche.getName())) return inheritedBranche;
    }
    return null;
  }

  public void pruneInheritedBranch(final Branch branch) {
    myInheritedBranches.remove(branch);
  }

  public void removeAllInheritedBranches() {
    myInheritedBranches.clear();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



clearcase-server/src/jetbrains/buildServer/buildTriggers/vcs/clearcase/versionTree/VersionHolder.java [34:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Branch getInheritedBranchByName(final String brancheName) {
    for (Branch inheritedBranche : myInheritedBranches) {
      if (brancheName.equals(inheritedBranche.getName())) return inheritedBranche;
    }
    return null;
  }

  public void pruneInheritedBranch(final Branch branch) {
    myInheritedBranches.remove(branch);
  }

  public void removeAllInheritedBranches() {
    myInheritedBranches.clear();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



