Hg: Added branch in RepoView IOException fixed

This commit is contained in:
Nadya.Zabrodina
2012-10-29 15:50:38 +04:00
parent b38c54f911
commit 1efafb561a
@@ -50,6 +50,7 @@ public class HgCachingCommitedChangesProvider implements CachingCommittedChanges
private final Project project;
private final HgVcs myVcs;
public final static int VERSION_WITH_REPOSITORY_BRANCHES = 2;
public HgCachingCommitedChangesProvider(Project project, HgVcs vcs) {
this.project = project;
@@ -57,7 +58,7 @@ public class HgCachingCommitedChangesProvider implements CachingCommittedChanges
}
public int getFormatVersion() {
return 0;
return VERSION_WITH_REPOSITORY_BRANCHES;
}
public CommittedChangeList readChangeList(RepositoryLocation repositoryLocation, DataInput dataInput) throws IOException {