mercurial/merge.py
changeset 23351 1cbc00ff2373
parent 23320 296b09dcef63
child 23362 cc83cac41619
--- a/mercurial/merge.py	Tue Nov 18 12:29:30 2014 -0600
+++ b/mercurial/merge.py	Tue Nov 18 16:14:32 2014 -0800
@@ -304,18 +304,6 @@
         and repo.dirstate.normalize(f) not in repo.dirstate
         and mctx[f].cmp(wctx[f]))
 
-def checkunknown(repo, wctx, mctx):
-    "check for collisions between unknown files and files in mctx"
-
-    error = False
-    for f in mctx:
-        if f not in wctx and _checkunknownfile(repo, wctx, mctx, f):
-            error = True
-            wctx._repo.ui.warn(_("%s: untracked file differs\n") % f)
-    if error:
-        raise util.Abort(_("untracked files in working directory differ "
-                           "from files in requested revision"))
-
 def _forgetremoved(wctx, mctx, branchmerge):
     """
     Forget removed files