comparison src/org/tmatesoft/hg/core/HgException.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 f52ca9530774
comparison
equal deleted inserted replaced
367:2fadf8695f8a 368:8107b95f4280
45 public HgException(Throwable cause) { 45 public HgException(Throwable cause) {
46 super(cause); 46 super(cause);
47 } 47 }
48 48
49 /** 49 /**
50 * @return not {@link HgRepository#BAD_REVISION} only when local revision index was supplied at the construction time 50 * @return not {@link HgRepository#BAD_REVISION} only when revision index was supplied at the construction time
51 */ 51 */
52 public int getRevisionIndex() { 52 public int getRevisionIndex() {
53 return revNumber; 53 return revNumber;
54 } 54 }
55 55