Mercurial > hg4j
diff src/org/tmatesoft/hg/core/HgManifestCommand.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 | 1792b37650f2 |
children | 6dbbc53fc46d |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgManifestCommand.java Fri Aug 12 18:48:57 2011 +0200 +++ b/src/org/tmatesoft/hg/core/HgManifestCommand.java Fri Aug 12 18:58:16 2011 +0200 @@ -123,7 +123,7 @@ public interface Handler { void begin(Nodeid manifestRevision); void dir(Path p); // optionally invoked (if walker was configured to spit out directories) prior to any files from this dir and subdirs - void file(HgLogCommand.FileRevision fileRevision); // XXX allow to check p is invalid (df.exists()) + void file(HgFileRevision fileRevision); // XXX allow to check p is invalid (df.exists()) void end(Nodeid manifestRevision); }