Package org.tmatesoft.hg.internal

Examples of org.tmatesoft.hg.internal.ChangelogMonitor


  private final Map<String, BranchInfo> branches = new TreeMap<String, BranchInfo>();
  private boolean isCacheActual = false;

  HgBranches(Internals internals) {
    internalRepo = internals;
    repoChangeTracker = new ChangelogMonitor(internals.getRepo());
  }
View Full Code Here


          // XXX need to decide what to do this. failure to read single revision shall not break complete cycle
        }
      }
    }
    if (repoChangeMonitor == null) {
      repoChangeMonitor = new ChangelogMonitor(repo.getRepo());
    }
    repoChangeMonitor.touch();
  }
View Full Code Here

TOP

Related Classes of org.tmatesoft.hg.internal.ChangelogMonitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.