comparison src/com/tmate/hgkit/ll/LocalHgRepo.java @ 50:f1db8610da62

Log to consult (placeholder, for now) class to find out associated tags
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Sat, 15 Jan 2011 01:41:49 +0100
parents d4fdd1845b3f
children 05829a70b30b
comparison
equal deleted inserted replaced
49:26e3eeaa3962 50:f1db8610da62
246 return dataAccess; 246 return dataAccess;
247 } 247 }
248 248
249 /*package-local*/ File getRepositoryRoot() { 249 /*package-local*/ File getRepositoryRoot() {
250 return repoDir; 250 return repoDir;
251 }
252
253 @Override
254 protected HgTags createTags() {
255 return new HgTags();
251 } 256 }
252 257
253 private final HashMap<String, SoftReference<RevlogStream>> streamsCache = new HashMap<String, SoftReference<RevlogStream>>(); 258 private final HashMap<String, SoftReference<RevlogStream>> streamsCache = new HashMap<String, SoftReference<RevlogStream>>();
254 259
255 /** 260 /**