diff test/org/tmatesoft/hg/test/MapTagsToFileRevisions.java @ 431:12f668401613

FIXMEs: awkward API refactored, what need to be internal got hidden; public aspects got captured in slim interfaces
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 29 Mar 2012 20:54:04 +0200
parents 31a89587eb04
children be697c3e951e
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/MapTagsToFileRevisions.java	Thu Mar 29 18:48:23 2012 +0200
+++ b/test/org/tmatesoft/hg/test/MapTagsToFileRevisions.java	Thu Mar 29 20:54:04 2012 +0200
@@ -119,7 +119,7 @@
 		//
 		final long start_3 = System.nanoTime();
 		final Map<Nodeid, Nodeid> changesetToNodeid_3 = new HashMap<Nodeid, Nodeid>();
-		fileNode.walk(0, TIP, new HgDataFile.RevisionInspector() {
+		fileNode.indexWalk(0, TIP, new HgDataFile.RevisionInspector() {
 
 			public void next(int fileRevisionIndex, Nodeid revision, int linkedRevisionIndex) {
 				changesetToNodeid_3.put(clog.getRevision(linkedRevisionIndex), revision);
@@ -360,7 +360,7 @@
 		repository.getManifest().walkFileRevisions(targetPath, collectFileRevAtCset,tagLocalRevs);
 
 		final long start2a = System.nanoTime();
-		fileNode.walk(0, lastRev, new HgDataFile.RevisionInspector() {
+		fileNode.indexWalk(0, lastRev, new HgDataFile.RevisionInspector() {
 
 			public void next(int fileRevisionIndex, Nodeid fileRevision, int changesetRevisionIndex) {
 				List<String> associatedTags = new LinkedList<String>();