##// END OF EJS Templates
merge: simplify a check in checkcopies
Matt Mackall -
r4399:93652499 default
parent child Browse files
Show More
@@ -157,7 +157,7 b' def findcopies(repo, m1, m2, ma, limit):'
157 157 # named changed on only one side?
158 158 if ca.path() == c.path() or ca.path() == c2.path():
159 159 fullcopy[c.path()] = of # remember for dir rename detection
160 if c == ca and c2 == ca: # no merge needed, ignore copy
160 if c == c2: # no merge needed, ignore copy
161 161 continue
162 162 copy[c.path()] = of
163 163
General Comments 0
You need to be logged in to leave comments. Login now