Mercurial > hg4j
diff src/org/tmatesoft/hg/repo/HgRepository.java @ 445:d0e5dc3cae6e smartgit3
Support for phases functionality from Mercurial 2.1
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Tue, 05 Jun 2012 20:50:06 +0200 |
parents | 63c5a9d7ca3f |
children | 7bcfbc255f48 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgRepository.java Wed Mar 21 14:54:02 2012 +0100 +++ b/src/org/tmatesoft/hg/repo/HgRepository.java Tue Jun 05 20:50:06 2012 +0200 @@ -70,9 +70,9 @@ private final File workingDir; // .hg/../ private final String repoLocation; private final DataAccessProvider dataAccess; - private final PathRewrite normalizePath; - private final PathRewrite dataPathHelper; - private final PathRewrite repoPathHelper; + private final PathRewrite normalizePath; // normalized slashes but otherwise regular file names + private final PathRewrite dataPathHelper; // access to file storage area (usually under .hg/store/data/), with filenames mangled + private final PathRewrite repoPathHelper; // access to system files private final SessionContext sessionContext; private HgChangelog changelog;