# HG changeset patch # User Artem Tikhomirov # Date 1294962739 -3600 # Node ID 50dfc69c108e5139bc22fb2034c1eca4313fea55 # Parent e45e75e22523aedf3c99fd792e9962d2b97b6100 Nodeid is confusing, denote it's reference to manifest diff -r e45e75e22523 -r 50dfc69c108e src/com/tmate/hgkit/ll/Changeset.java --- a/src/com/tmate/hgkit/ll/Changeset.java Fri Jan 14 00:49:58 2011 +0100 +++ b/src/com/tmate/hgkit/ll/Changeset.java Fri Jan 14 00:52:19 2011 +0100 @@ -1,5 +1,5 @@ -/** - * Copyright (c) 2010 Artem Tikhomirov +/* + * Copyright (c) 2010, 2011 Artem Tikhomirov */ package com.tmate.hgkit.ll; @@ -24,7 +24,7 @@ */ public class Changeset { // TODO immutable - private /*final*/ Nodeid nodeid; + private /*final*/ Nodeid manifest; private String user; private String comment; private ArrayList files; @@ -33,7 +33,7 @@ public void dump() { System.out.println("User:" + user); System.out.println("Comment:" + comment); - System.out.println("Nodeid:" + nodeid); + System.out.println("Manifest:" + manifest); System.out.println("Date:" + timezone); System.out.println("Files: " + files.size()); for (String s : files) { @@ -92,7 +92,7 @@ throw new IllegalStateException("Could hardly happen"); } // change this instance at once, don't leave it partially changes in case of error - this.nodeid = _nodeid; + this.manifest = _nodeid; this.user = _user; this.timezone = _timezone; this.files = _files;