Examples of HgChangeset


Examples of org.tmatesoft.hg.core.HgChangeset

    public final RenameCollector rh = new RenameCollector();
    public List<HgChangeset> lastChangesetReportedAtRename = new LinkedList<HgChangeset>();

    public void copy(HgFileRevision from, HgFileRevision to) throws HgCallbackTargetException {
      Assert.assertTrue("Renames couldn't be reported prior to any change", getChanges().size() > 0);
      HgChangeset lastKnown = getChanges().get(getChanges().size() - 1);
      lastChangesetReportedAtRename.add(lastKnown);
      rh.copy(from, to);
    }
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.