diff src/org/tmatesoft/hg/repo/HgDataFile.java @ 437:32184ddcf46d

Better argument names
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 17 Apr 2012 22:29:50 +0200
parents 063b0663495a
children 909306e412e2
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgDataFile.java	Tue Apr 17 22:29:25 2012 +0200
+++ b/src/org/tmatesoft/hg/repo/HgDataFile.java	Tue Apr 17 22:29:50 2012 +0200
@@ -362,8 +362,8 @@
 	 * @return changeset revision index
 	 * @throws HgRuntimeException subclass thereof to indicate issues with the library. <em>Runtime exception</em>
 	 */
-	public int getChangesetRevisionIndex(int revision) throws HgRuntimeException {
-		return content.linkRevision(revision);
+	public int getChangesetRevisionIndex(int fileRevisionIndex) throws HgRuntimeException {
+		return content.linkRevision(fileRevisionIndex);
 	}
 
 	/**