comparison src/org/tmatesoft/hg/internal/CommitFacility.java @ 613:f41dd9a3b8af v1.1m4

Remove few Experimental annotations as the API they've marked graduates
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 10 May 2013 17:31:27 +0200
parents dca70c0b1f74
children 5e0313485eef
comparison
equal deleted inserted replaced
612:dca70c0b1f74 613:f41dd9a3b8af
41 import org.tmatesoft.hg.repo.HgDataFile; 41 import org.tmatesoft.hg.repo.HgDataFile;
42 import org.tmatesoft.hg.util.Pair; 42 import org.tmatesoft.hg.util.Pair;
43 import org.tmatesoft.hg.util.Path; 43 import org.tmatesoft.hg.util.Path;
44 44
45 /** 45 /**
46 * WORK IN PROGRESS
47 * Name: CommitObject, FutureCommit or PendingCommit 46 * Name: CommitObject, FutureCommit or PendingCommit
48 * Only public API now: {@link HgCommitCommand}. 47 * The only public API now: {@link HgCommitCommand}.
49 * 48 *
50 * @author Artem Tikhomirov 49 * @author Artem Tikhomirov
51 * @author TMate Software Ltd. 50 * @author TMate Software Ltd.
52 */ 51 */
53 @Experimental(reason="Work in progress")
54 public final class CommitFacility { 52 public final class CommitFacility {
55 private final Internals repo; 53 private final Internals repo;
56 private final int p1Commit, p2Commit; 54 private final int p1Commit, p2Commit;
57 private Map<Path, Pair<HgDataFile, ByteDataSupplier>> files = new LinkedHashMap<Path, Pair<HgDataFile, ByteDataSupplier>>(); 55 private Map<Path, Pair<HgDataFile, ByteDataSupplier>> files = new LinkedHashMap<Path, Pair<HgDataFile, ByteDataSupplier>>();
58 private Set<Path> removals = new TreeSet<Path>(); 56 private Set<Path> removals = new TreeSet<Path>();