diff src/org/tmatesoft/hg/repo/HgBundle.java @ 154:ba2bf656f00f

Changeset => RawChangeset
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 24 Feb 2011 22:16:19 +0100
parents 645829962785
children d5268ca7715b
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgBundle.java	Thu Feb 24 21:38:46 2011 +0100
+++ b/src/org/tmatesoft/hg/repo/HgBundle.java	Thu Feb 24 22:16:19 2011 +0100
@@ -26,7 +26,7 @@
 import org.tmatesoft.hg.internal.DataAccessProvider;
 import org.tmatesoft.hg.internal.DigestHelper;
 import org.tmatesoft.hg.internal.RevlogStream;
-import org.tmatesoft.hg.repo.HgChangelog.Changeset;
+import org.tmatesoft.hg.repo.HgChangelog.RawChangeset;
 
 
 /**
@@ -69,7 +69,7 @@
 				if (!ge.node().equalsTo(dh.asBinary())) {
 					throw new IllegalStateException("Integrity check failed on " + bundleFile + ", node:" + ge.node());
 				}
-				Changeset cs = Changeset.parse(csetContent, 0, csetContent.length);
+				RawChangeset cs = RawChangeset.parse(csetContent, 0, csetContent.length);
 				System.out.println(cs.toString());
 				baseRevContent = csetContent;
 			}