diff src/org/tmatesoft/hg/repo/HgDataFile.java @ 129:645829962785

core.Cset renamed to HgChangeset; repo.Changeset moved into HgChangelog
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 16 Feb 2011 20:32:29 +0100
parents b1d6208fb517
children 4a948ec83980
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgDataFile.java	Wed Feb 16 20:13:41 2011 +0100
+++ b/src/org/tmatesoft/hg/repo/HgDataFile.java	Wed Feb 16 20:32:29 2011 +0100
@@ -147,11 +147,11 @@
 		return rv;
 	}
 
-	public void history(Changeset.Inspector inspector) {
+	public void history(HgChangelog.Inspector inspector) {
 		history(0, content.revisionCount() - 1, inspector);
 	}
 
-	public void history(int start, int end, Changeset.Inspector inspector) {
+	public void history(int start, int end, HgChangelog.Inspector inspector) {
 		if (!exists()) {
 			throw new IllegalStateException("Can't get history of invalid repository file node"); 
 		}