diff src/com/tmate/hgkit/ll/HgManifest.java @ 21:e929cecae4e1

Refactor to move revlog content to base class
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 05 Jan 2011 04:10:28 +0100
parents 11cfabe692b3
children d4fdd1845b3f
line wrap: on
line diff
--- a/src/com/tmate/hgkit/ll/HgManifest.java	Tue Jan 04 02:08:25 2011 +0100
+++ b/src/com/tmate/hgkit/ll/HgManifest.java	Wed Jan 05 04:10:28 2011 +0100
@@ -9,11 +9,8 @@
  */
 public class HgManifest extends Revlog {
 
-	private final RevlogStream content;
-
 	/*package-local*/ HgManifest(HgRepository hgRepo, RevlogStream content) {
-		super(hgRepo);
-		this.content = content;
+		super(hgRepo, content);
 	}
 
 	public void walk(int start, int end, final Inspector inspector) {