Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgFileRevision.java @ 249:4c3b9f679412
Deprecated HgLogCommand.FileRevision gone, top-level HgFileRevision is bright and shiny replacement
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
|---|---|
| date | Fri, 12 Aug 2011 18:58:16 +0200 |
| parents | 6e1373b54e9b |
| children | ee6b467c1a5f |
comparison
equal
deleted
inserted
replaced
| 248:3fbfce107f94 | 249:4c3b9f679412 |
|---|---|
| 26 * Keeps together information about specific file revision | 26 * Keeps together information about specific file revision |
| 27 * | 27 * |
| 28 * @author Artem Tikhomirov | 28 * @author Artem Tikhomirov |
| 29 * @author TMate Software Ltd. | 29 * @author TMate Software Ltd. |
| 30 */ | 30 */ |
| 31 public final class HgFileRevision implements HgLogCommand.FileRevision { | 31 public final class HgFileRevision { |
| 32 private final HgRepository repo; | 32 private final HgRepository repo; |
| 33 private final Nodeid revision; | 33 private final Nodeid revision; |
| 34 private final Path path; | 34 private final Path path; |
| 35 | 35 |
| 36 public HgFileRevision(HgRepository hgRepo, Nodeid rev, Path p) { | 36 public HgFileRevision(HgRepository hgRepo, Nodeid rev, Path p) { |
