Skip to content
Snippets Groups Projects
Commit 85f59340 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

copies: move early return for "no copies" case a little earlier

We can return before the block that prints debug messages. That block
will not be run anyway when there are no copies.

Differential Revision: https://phab.mercurial-scm.org/D6248
parent 22c9ffdf
No related branches found
No related tags found
No related merge requests found
......@@ -696,7 +696,11 @@
for src, dsts in diverge.items():
for dst in dsts:
fullcopy[dst] = src
if fullcopy and repo.ui.debugflag:
if not fullcopy:
return copy, {}, diverge, renamedelete, {}
if repo.ui.debugflag:
repo.ui.debug(" all copies found (* = to merge, ! = divergent, "
"% = renamed and deleted):\n")
for f in sorted(fullcopy):
......@@ -711,9 +715,6 @@
note))
del divergeset
if not fullcopy:
return copy, {}, diverge, renamedelete, {}
repo.ui.debug(" checking for directory renames\n")
# generate a directory move map
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment