largefiles: remove extra check for file to get - it _is_ by definition in p2 stable
authorMads Kiilerich <madski@unity3d.com>
Fri, 25 Oct 2013 02:25:10 +0800
branchstable
changeset 19953 593207462618
parent 19952 8eb99e5cec4a
child 19954 427ce5633c1c
largefiles: remove extra check for file to get - it _is_ by definition in p2
hgext/largefiles/overrides.py
--- a/hgext/largefiles/overrides.py	Fri Oct 25 01:24:10 2013 +0800
+++ b/hgext/largefiles/overrides.py	Fri Oct 25 02:25:10 2013 +0800
@@ -381,7 +381,7 @@
 
         splitstandin = lfutil.splitstandin(f)
         if (m == "g" and splitstandin is not None and
-            splitstandin in p1 and f in p2):
+            splitstandin in p1):
             # Case 1: normal file in the working copy, largefile in
             # the second parent
             lfile = splitstandin
@@ -394,7 +394,7 @@
                 processed.append((standin, "g", (p2.flags(standin),), msg))
             else:
                 processed.append((standin, "r", None, msg))
-        elif m == "g" and lfutil.standin(f) in p1 and f in p2:
+        elif m == "g" and lfutil.standin(f) in p1:
             # Case 2: largefile in the working copy, normal file in
             # the second parent
             standin = lfutil.standin(f)