comparison src/org/tmatesoft/hg/internal/Internals.java @ 83:a5275143664c

Complete path hash calculation of fncache requirement
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 25 Jan 2011 22:44:14 +0100
parents 6f1b88693d48
children a3a2e5deb320
comparison
equal deleted inserted replaced
82:7255c971dd66 83:a5275143664c
31 public class Internals { 31 public class Internals {
32 32
33 private int revlogVersion = 0; 33 private int revlogVersion = 0;
34 private int requiresFlags = 0; 34 private int requiresFlags = 0;
35 35
36 void setStorageConfig(int version, int flags) { 36 public/*for tests, otherwise pkg*/ void setStorageConfig(int version, int flags) {
37 revlogVersion = version; 37 revlogVersion = version;
38 requiresFlags = flags; 38 requiresFlags = flags;
39 } 39 }
40 40
41 // XXX perhaps, should keep both fields right here, not in the HgRepository 41 // XXX perhaps, should keep both fields right here, not in the HgRepository