diff mercurial/localrepo.py @ 16624:3f85cef66dcc

phases: call filterunknown() in readroots() One less function manipulating localrepo state.
author Patrick Mezard <patrick@mezard.eu>
date Thu, 10 May 2012 18:21:15 +0200
parents ebf6d38c9063
children df9df747070d
line wrap: on
line diff
--- a/mercurial/localrepo.py	Thu May 10 18:21:15 2012 +0200
+++ b/mercurial/localrepo.py	Thu May 10 18:21:15 2012 +0200
@@ -185,7 +185,6 @@
     def _phaseroots(self):
         self._dirtyphases = False
         phaseroots = phases.readroots(self)
-        phases.filterunknown(self, phaseroots)
         return phaseroots
 
     @propertycache