mercurial/bundlerepo.py
changeset 51401 04111ef08fb0
parent 51400 68289ed170c7
child 51417 ac1c75188440
equal deleted inserted replaced
51400:68289ed170c7 51401:04111ef08fb0
   267         raise NotImplementedError
   267         raise NotImplementedError
   268 
   268 
   269     def _write(self, fp):
   269     def _write(self, fp):
   270         raise NotImplementedError
   270         raise NotImplementedError
   271 
   271 
   272     def _updateroots(self, phase, newroots, tr):
   272     def _updateroots(self, repo, phase, newroots, tr):
   273         self._phaseroots[phase] = newroots
   273         self._phaseroots[phase] = newroots
   274         self.invalidate()
   274         self.invalidate()
   275         self.dirty = True
   275         self.dirty = True
   276 
   276 
   277 
   277