##// END OF EJS Templates
revlog: remove legacy usage of `_deltabothparents`...
marmoute -
r51946:96f521df default
parent child Browse files
Show More
@@ -924,7 +924,7 b' def _rawgroups(revlog, p1, p2, cachedelt'
924 # exclude already lazy tested base if any
924 # exclude already lazy tested base if any
925 parents = [p for p in (p1, p2) if p != nullrev]
925 parents = [p for p in (p1, p2) if p != nullrev]
926
926
927 if not revlog._deltabothparents and len(parents) == 2:
927 if not revlog.delta_config.delta_both_parents and len(parents) == 2:
928 parents.sort()
928 parents.sort()
929 # To minimize the chance of having to build a fulltext,
929 # To minimize the chance of having to build a fulltext,
930 # pick first whichever parent is closest to us (max rev)
930 # pick first whichever parent is closest to us (max rev)
General Comments 0
You need to be logged in to leave comments. Login now