Mercurial > hg4j
comparison cmdline/org/tmatesoft/hg/console/Manifest.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 | b9700740553a |
children | 45dc79e545f5 |
comparison
equal
deleted
inserted
replaced
248:3fbfce107f94 | 249:4c3b9f679412 |
---|---|
16 */ | 16 */ |
17 package org.tmatesoft.hg.console; | 17 package org.tmatesoft.hg.console; |
18 | 18 |
19 import static org.tmatesoft.hg.repo.HgRepository.TIP; | 19 import static org.tmatesoft.hg.repo.HgRepository.TIP; |
20 | 20 |
21 import org.tmatesoft.hg.core.HgLogCommand.FileRevision; | 21 import org.tmatesoft.hg.core.HgFileRevision; |
22 import org.tmatesoft.hg.core.HgManifestCommand; | 22 import org.tmatesoft.hg.core.HgManifestCommand; |
23 import org.tmatesoft.hg.core.Nodeid; | 23 import org.tmatesoft.hg.core.Nodeid; |
24 import org.tmatesoft.hg.repo.HgRepository; | 24 import org.tmatesoft.hg.repo.HgRepository; |
25 import org.tmatesoft.hg.util.Path; | 25 import org.tmatesoft.hg.util.Path; |
26 | 26 |
45 | 45 |
46 public void begin(Nodeid manifestRevision) { | 46 public void begin(Nodeid manifestRevision) { |
47 } | 47 } |
48 public void dir(Path p) { | 48 public void dir(Path p) { |
49 } | 49 } |
50 public void file(FileRevision fileRevision) { | 50 public void file(HgFileRevision fileRevision) { |
51 if (debug) { | 51 if (debug) { |
52 System.out.print(fileRevision.getRevision());; | 52 System.out.print(fileRevision.getRevision());; |
53 } | 53 } |
54 if (debug || verbose) { | 54 if (debug || verbose) { |
55 System.out.print(" 644"); // FIXME real flags! | 55 System.out.print(" 644"); // FIXME real flags! |