Mercurial > hg4j
comparison src/org/tmatesoft/hg/repo/HgChangelog.java @ 426:063b0663495a
HgManifest#getFileRevisions refactored into #walkFileRevisions to match pattern throught rest of the library
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 28 Mar 2012 19:34:37 +0200 |
parents | 6437d261048a |
children | 31a89587eb04 |
comparison
equal
deleted
inserted
replaced
425:48f993aa2f41 | 426:063b0663495a |
---|---|
45 * Representation of the Mercurial changelog file (list of ChangeSets) | 45 * Representation of the Mercurial changelog file (list of ChangeSets) |
46 * | 46 * |
47 * @author Artem Tikhomirov | 47 * @author Artem Tikhomirov |
48 * @author TMate Software Ltd. | 48 * @author TMate Software Ltd. |
49 */ | 49 */ |
50 public class HgChangelog extends Revlog { | 50 public final class HgChangelog extends Revlog { |
51 | 51 |
52 /* package-local */HgChangelog(HgRepository hgRepo, RevlogStream content) { | 52 /* package-local */HgChangelog(HgRepository hgRepo, RevlogStream content) { |
53 super(hgRepo, content); | 53 super(hgRepo, content); |
54 } | 54 } |
55 | 55 |