merge: remove no longer possible clause
authorMatt Mackall <mpm@selenic.com>
Sun, 17 Sep 2006 18:28:50 -0500
changeset 3113 f96c8e219865
parent 3112 5cc62d99b785
child 3114 d1d1cd5b9484
merge: remove no longer possible clause
mercurial/merge.py
--- a/mercurial/merge.py
+++ b/mercurial/merge.py
@@ -133,10 +133,6 @@ def manifestmerge(ui, m1, m2, ma, overwr
                     ui.debug(_(" remote %s is newer, get\n") % f)
                     action.append((f, "g", m2.execf(f), m2[f]))
                     queued = 1
-            elif n[20:] in ("u","a"):
-                # this unknown file is the same as the checkout
-                # we need to reset the dirstate if the file was added
-                action.append((f, "g", m2.execf(f), m2[f]))
 
             # do we still need to look at mode bits?
             if not queued and m1.execf(f) != m2.execf(f):