Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgAddRemoveCommand.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 | 0890628ed51e |
children | 65c01508f002 |
comparison
equal
deleted
inserted
replaced
612:dca70c0b1f74 | 613:f41dd9a3b8af |
---|---|
18 | 18 |
19 import java.util.LinkedHashSet; | 19 import java.util.LinkedHashSet; |
20 | 20 |
21 import org.tmatesoft.hg.internal.DirstateBuilder; | 21 import org.tmatesoft.hg.internal.DirstateBuilder; |
22 import org.tmatesoft.hg.internal.DirstateReader; | 22 import org.tmatesoft.hg.internal.DirstateReader; |
23 import org.tmatesoft.hg.internal.Experimental; | |
24 import org.tmatesoft.hg.internal.Internals; | 23 import org.tmatesoft.hg.internal.Internals; |
25 import org.tmatesoft.hg.repo.HgManifest.Flags; | 24 import org.tmatesoft.hg.repo.HgManifest.Flags; |
26 import org.tmatesoft.hg.repo.HgRepository; | 25 import org.tmatesoft.hg.repo.HgRepository; |
27 import org.tmatesoft.hg.repo.HgRuntimeException; | 26 import org.tmatesoft.hg.repo.HgRuntimeException; |
28 import org.tmatesoft.hg.util.CancelSupport; | 27 import org.tmatesoft.hg.util.CancelSupport; |
29 import org.tmatesoft.hg.util.CancelledException; | 28 import org.tmatesoft.hg.util.CancelledException; |
30 import org.tmatesoft.hg.util.Path; | 29 import org.tmatesoft.hg.util.Path; |
31 import org.tmatesoft.hg.util.ProgressSupport; | 30 import org.tmatesoft.hg.util.ProgressSupport; |
32 | 31 |
33 /** | 32 /** |
34 * WORK IN PROGRESS | |
35 * | |
36 * Schedule files for addition and removal | 33 * Schedule files for addition and removal |
37 * XXX and, perhaps, forget() functionality shall be here as well? | 34 * XXX and, perhaps, forget() functionality shall be here as well? |
38 * | 35 * |
39 * @since 1.1 | 36 * @since 1.1 |
40 * @author Artem Tikhomirov | 37 * @author Artem Tikhomirov |
41 * @author TMate Software Ltd. | 38 * @author TMate Software Ltd. |
42 */ | 39 */ |
43 @Experimental(reason="Work in progress") | |
44 public class HgAddRemoveCommand extends HgAbstractCommand<HgAddRemoveCommand> { | 40 public class HgAddRemoveCommand extends HgAbstractCommand<HgAddRemoveCommand> { |
45 | 41 |
46 private final HgRepository repo; | 42 private final HgRepository repo; |
47 private final LinkedHashSet<Path> toAdd, toRemove; | 43 private final LinkedHashSet<Path> toAdd, toRemove; |
48 | 44 |