Mercurial > hg4j
comparison src/org/tmatesoft/hg/core/HgChangeset.java @ 131:aa1629f36482
Renamed .core classes to start with Hg prefix
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 16 Feb 2011 20:47:56 +0100 |
parents | 645829962785 |
children | 4a948ec83980 |
comparison
equal
deleted
inserted
replaced
130:7567f4a42fe5 | 131:aa1629f36482 |
---|---|
18 | 18 |
19 import java.util.ArrayList; | 19 import java.util.ArrayList; |
20 import java.util.Collections; | 20 import java.util.Collections; |
21 import java.util.List; | 21 import java.util.List; |
22 | 22 |
23 import org.tmatesoft.hg.core.LogCommand.FileRevision; | 23 import org.tmatesoft.hg.core.HgLogCommand.FileRevision; |
24 import org.tmatesoft.hg.repo.HgChangelog.Changeset; | 24 import org.tmatesoft.hg.repo.HgChangelog.Changeset; |
25 import org.tmatesoft.hg.repo.HgRepository; | 25 import org.tmatesoft.hg.repo.HgRepository; |
26 import org.tmatesoft.hg.repo.HgStatusCollector; | 26 import org.tmatesoft.hg.repo.HgStatusCollector; |
27 import org.tmatesoft.hg.util.PathPool; | 27 import org.tmatesoft.hg.util.PathPool; |
28 | 28 |
29 | 29 |
30 /** | 30 /** |
31 * TODO rename to Changeset along with original Changeset moved to .repo and renamed to HgChangeset? | 31 * Record in the Mercurial changelog, describing single commit. |
32 * | |
32 * Not thread-safe, don't try to read from different threads | 33 * Not thread-safe, don't try to read from different threads |
33 * | 34 * |
34 * @author Artem Tikhomirov | 35 * @author Artem Tikhomirov |
35 * @author TMate Software Ltd. | 36 * @author TMate Software Ltd. |
36 */ | 37 */ |