##// END OF EJS Templates
hidden: drop of the repo.hiddenrevs property...
Pierre-Yves David -
r18253:a32255de default
parent child Browse files
Show More
@@ -350,23 +350,6 b' class localrepository(object):'
350 self.ui.warn(msg % len(list(store)))
350 self.ui.warn(msg % len(list(store)))
351 return store
351 return store
352
352
353 @property
354 @unfiltered
355 def hiddenrevs(self):
356 """hiddenrevs: revs that should be hidden by command and tools
357
358 This set is carried on the repo to ease initialization and lazy
359 loading; it'll probably move back to changelog for efficiency and
360 consistency reasons.
361
362 Note that the hiddenrevs will needs invalidations when
363 - a new changesets is added (possible unstable above extinct)
364 - a new obsolete marker is added (possible new extinct changeset)
365
366 hidden changesets cannot have non-hidden descendants
367 """
368 return repoview.filteredrevs(self, 'hidden')
369
370 @storecache('00changelog.i')
353 @storecache('00changelog.i')
371 def changelog(self):
354 def changelog(self):
372 c = changelog.changelog(self.sopener)
355 c = changelog.changelog(self.sopener)
General Comments 0
You need to be logged in to leave comments. Login now