##// END OF EJS Templates
copies: remove a redundant matcher filtering in _changesetforwardcopies()...
Martin von Zweigbergk -
r42718:c7104896 default
parent child Browse files
Show More
@@ -279,8 +279,6 b' def _changesetforwardcopies(a, b, match)'
279 copies = {}
279 copies = {}
280 allcopies = set(copies1) | set(copies2)
280 allcopies = set(copies1) | set(copies2)
281 for dst in allcopies:
281 for dst in allcopies:
282 if not alwaysmatch and not match(dst):
283 continue
284 # Unlike when copies are stored in the filelog, we consider
282 # Unlike when copies are stored in the filelog, we consider
285 # it a copy even if the destination already existed on the
283 # it a copy even if the destination already existed on the
286 # other branch. It's simply too expensive to check if the
284 # other branch. It's simply too expensive to check if the
General Comments 0
You need to be logged in to leave comments. Login now