Mercurial > hg4j
diff src/org/tmatesoft/hg/core/HgLogCommand.java @ 368:8107b95f4280
Update Javadoc with 'revision index'
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 16 Dec 2011 16:00:57 +0100 |
parents | 2fadf8695f8a |
children | a2341e761609 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgLogCommand.java Fri Dec 16 15:37:27 2011 +0100 +++ b/src/org/tmatesoft/hg/core/HgLogCommand.java Fri Dec 16 16:00:57 2011 +0100 @@ -132,8 +132,8 @@ /** * Limit to specified subset of Changelog, [min(rev1,rev2), max(rev1,rev2)], inclusive. * Revision may be specified with {@link HgRepository#TIP} - * @param rev1 - local revision index - * @param rev2 - local revision index + * @param rev1 - revision local index + * @param rev2 - revision local index * @return <code>this</code> instance for convenience */ public HgLogCommand range(int rev1, int rev2) { @@ -160,8 +160,8 @@ */ public HgLogCommand changeset(Nodeid nid) throws HgInvalidControlFileException, HgInvalidRevisionException { // XXX perhaps, shall support multiple (...) arguments and extend #execute to handle not only range, but also set of revisions. - final int csetLocal = repo.getChangelog().getRevisionIndex(nid); - return range(csetLocal, csetLocal); + final int csetRevIndex = repo.getChangelog().getRevisionIndex(nid); + return range(csetRevIndex, csetRevIndex); } /**