diff cmdline/org/tmatesoft/hg/console/Cat.java @ 96:ace7042a5ce6

Internals to HgInternals
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 27 Jan 2011 21:24:37 +0100
parents 6f1b88693d48
children a3a2e5deb320
line wrap: on
line diff
--- a/cmdline/org/tmatesoft/hg/console/Cat.java	Thu Jan 27 21:22:57 2011 +0100
+++ b/cmdline/org/tmatesoft/hg/console/Cat.java	Thu Jan 27 21:24:37 2011 +0100
@@ -19,7 +19,7 @@
 import org.tmatesoft.hg.internal.DigestHelper;
 import org.tmatesoft.hg.repo.HgDataFile;
 import org.tmatesoft.hg.repo.HgRepository;
-import org.tmatesoft.hg.repo.Internals;
+import org.tmatesoft.hg.repo.HgInternals;
 
 
 /**
@@ -35,7 +35,7 @@
 			System.err.printf("Can't find repository in: %s\n", hgRepo.getLocation());
 			return;
 		}
-		Internals debug = new Internals(hgRepo);
+		HgInternals debug = new HgInternals(hgRepo);
 		String[] toCheck = new String[] {"design.txt", "src/com/tmate/hgkit/ll/Changelog.java", "src/Extras.java", "bin/com/tmate/hgkit/ll/Changelog.class"};
 		boolean[] checkResult = debug.checkIgnored(toCheck);
 		for (int i = 0; i < toCheck.length; i++) {