Package org.tmatesoft.hg.internal

Examples of org.tmatesoft.hg.internal.CompleteRepoLock.acquire()


  public Outcome execute() throws HgException, IOException, CancelledException {
    if (message == null) {
      throw new HgBadArgumentException("Shall supply commit message", null);
    }
    final CompleteRepoLock repoLock = new CompleteRepoLock(repo);
    repoLock.acquire();
    try {
      int[] parentRevs = new int[2];
      detectParentFromDirstate(parentRevs);
      HgWorkingCopyStatusCollector sc = new HgWorkingCopyStatusCollector(repo);
      Record status = sc.status(HgRepository.WORKING_COPY);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.