comparison src/org/tmatesoft/hg/repo/HgRepository.java @ 403:2747b0723867

FIXMEs: work on exceptions and javadoc
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Mon, 05 Mar 2012 14:50:51 +0100
parents 0ae53c32ecef
children 866fc3b597a0
comparison
equal deleted inserted replaced
402:1fcc7f7b6d65 403:2747b0723867
53 */ 53 */
54 public final class HgRepository { 54 public final class HgRepository {
55 55
56 // if new constants added, consider fixing HgInternals#wrongRevisionIndex 56 // if new constants added, consider fixing HgInternals#wrongRevisionIndex
57 public static final int TIP = -3; 57 public static final int TIP = -3;
58 public static final int BAD_REVISION = Integer.MIN_VALUE; 58 public static final int BAD_REVISION = Integer.MIN_VALUE; // XXX INVALID_REVISION?
59 public static final int WORKING_COPY = -2; 59 public static final int WORKING_COPY = -2;
60 60
61 public static final String DEFAULT_BRANCH_NAME = "default"; 61 public static final String DEFAULT_BRANCH_NAME = "default";
62 62
63 // temp aux marker method 63 // temp aux marker method