##// END OF EJS Templates
context: remove seemingly impossible code branch...
Martin von Zweigbergk -
r40707:1423ff45 default
parent child Browse files
Show More
@@ -562,9 +562,7 b' class basefilectx(object):'
562
562
563 @propertycache
563 @propertycache
564 def _changeid(self):
564 def _changeid(self):
565 if r'_changeid' in self.__dict__:
565 if r'_changectx' in self.__dict__:
566 return self._changeid
567 elif r'_changectx' in self.__dict__:
568 return self._changectx.rev()
566 return self._changectx.rev()
569 elif r'_descendantrev' in self.__dict__:
567 elif r'_descendantrev' in self.__dict__:
570 # this file context was created from a revision with a known
568 # this file context was created from a revision with a known
General Comments 0
You need to be logged in to leave comments. Login now