##// END OF EJS Templates
context: fast path linkrev adjustement in trivial case...
Boris Feld -
r40080:ccf4d808 default
parent child Browse files
Show More
@@ -734,6 +734,8 b' class basefilectx(object):'
734 mfl = repo.manifestlog
734 mfl = repo.manifestlog
735 # fetch the linkrev
735 # fetch the linkrev
736 lkr = self.linkrev()
736 lkr = self.linkrev()
737 if srcrev == lkr:
738 return lkr
737 # hack to reuse ancestor computation when searching for renames
739 # hack to reuse ancestor computation when searching for renames
738 memberanc = getattr(self, '_ancestrycontext', None)
740 memberanc = getattr(self, '_ancestrycontext', None)
739 iteranc = None
741 iteranc = None
General Comments 0
You need to be logged in to leave comments. Login now