Mercurial > hg4j
diff src/com/tmate/hgkit/ll/HgRepository.java @ 13:df8c67f3006a
Basic manifest parsing to analyze what's in there
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Sun, 26 Dec 2010 03:21:17 +0100 |
parents | 382cfe9463db |
children | 02ee376bee79 |
line wrap: on
line diff
--- a/src/com/tmate/hgkit/ll/HgRepository.java Sun Dec 26 02:17:39 2010 +0100 +++ b/src/com/tmate/hgkit/ll/HgRepository.java Sun Dec 26 03:21:17 2010 +0100 @@ -41,7 +41,8 @@ public final HgManifest getManifest() { if (this.manifest == null) { - this.manifest = new HgManifest(this); + RevlogStream content = resolve(toStoragePath("00manifest.i", false)); + this.manifest = new HgManifest(this, content); } return this.manifest; }