diff src/org/tmatesoft/hg/repo/HgDirstate.java @ 93:d55d4eedfc57

Switch to Path instead of String in filenames returned by various status operations
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 27 Jan 2011 21:15:21 +0100
parents 6f1b88693d48
children a3a2e5deb320
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgDirstate.java	Thu Jan 27 06:31:58 2011 +0100
+++ b/src/org/tmatesoft/hg/repo/HgDirstate.java	Thu Jan 27 21:15:21 2011 +0100
@@ -34,7 +34,7 @@
  * @author Artem Tikhomirov
  * @author TMate Software Ltd.
  */
-public class HgDirstate {
+class HgDirstate {
 
 	private final DataAccessProvider accessProvider;
 	private final File dirstateFile;
@@ -143,7 +143,7 @@
 
 
 
-	public void dump() {
+	/*package-local*/ void dump() {
 		read();
 		@SuppressWarnings("unchecked")
 		Map<String, Record>[] all = new Map[] { normal, added, removed, merged };