##// END OF EJS Templates
localrepo: remove spurious updatebranchcache return value...
Mads Kiilerich -
r15884:cc8287d5 default
parent child Browse files
Show More
@@ -480,7 +480,7 b' class localrepository(repo.repository):'
480 def updatebranchcache(self):
480 def updatebranchcache(self):
481 tip = self.changelog.tip()
481 tip = self.changelog.tip()
482 if self._branchcache is not None and self._branchcachetip == tip:
482 if self._branchcache is not None and self._branchcachetip == tip:
483 return self._branchcache
483 return
484
484
485 oldtip = self._branchcachetip
485 oldtip = self._branchcachetip
486 self._branchcachetip = tip
486 self._branchcachetip = tip
General Comments 0
You need to be logged in to leave comments. Login now