Mercurial > jhg
diff src/org/tmatesoft/hg/repo/HgDataFile.java @ 600:46f29b73e51e
Utilize RevisionLookup to speed-up getRevisionIndex of both manifest and changelog
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 03 May 2013 17:03:31 +0200 |
parents | e4ee4bf4c7d0 |
children | e3717fc7d26f |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgDataFile.java Fri May 03 15:29:26 2013 +0200 +++ b/src/org/tmatesoft/hg/repo/HgDataFile.java Fri May 03 17:03:31 2013 +0200 @@ -67,7 +67,7 @@ private Metadata metadata; // get initialized on first access to file content. /*package-local*/HgDataFile(HgRepository hgRepo, Path filePath, RevlogStream content) { - super(hgRepo, content); + super(hgRepo, content, false); path = filePath; }