diff src/org/tmatesoft/hg/core/HgLogCommand.java @ 237:6e1373b54e9b

Allow access to working copy content through HgDataFile. Give access to repository's working dir
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 10 Jun 2011 04:35:21 +0200
parents 1792b37650f2
children 4c3b9f679412
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgLogCommand.java	Thu Jun 09 06:13:43 2011 +0200
+++ b/src/org/tmatesoft/hg/core/HgLogCommand.java	Fri Jun 10 04:35:21 2011 +0200
@@ -322,6 +322,6 @@
 	public interface FileRevision {
 		public abstract Path getPath();
 		public abstract Nodeid getRevision();
-		public abstract void putContentTo(ByteChannel sink) throws HgDataStreamException, IOException, CancelledException;
+		public abstract void putContentTo(ByteChannel sink) throws HgDataStreamException, CancelledException;
 	}
 }