diff src/org/tmatesoft/hg/repo/HgTags.java @ 367:2fadf8695f8a

Use 'revision index' instead of the vague 'local revision number' concept in the API
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 16 Dec 2011 15:37:27 +0100
parents 5f9073eabf06
children 9c9c442b5f2e
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgTags.java	Fri Dec 16 04:43:18 2011 +0100
+++ b/src/org/tmatesoft/hg/repo/HgTags.java	Fri Dec 16 15:37:27 2011 +0100
@@ -241,7 +241,7 @@
 
 		public String branch() throws HgInvalidControlFileException {
 			if (branch == null) {
-				int x = repo.getChangelog().getLocalRevision(revision());
+				int x = repo.getChangelog().getRevisionIndex(revision());
 				branch = repo.getChangelog().range(x, x).get(0).branch();
 			}
 			return branch;