changeset 49031:9be7da341885

revert: use a `continue` to reduce indentation I'm about to add more code in the block I'm modifying here. Differential Revision: https://phab.mercurial-scm.org/D12415
author Martin von Zweigbergk <martinvonz@google.com>
date Mon, 28 Mar 2022 10:43:06 -0700
parents 75794847ef62
children 3f6ef67e7a60
files mercurial/cmdutil.py
diffstat 1 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/cmdutil.py	Fri Mar 25 08:33:03 2022 -0700
+++ b/mercurial/cmdutil.py	Mon Mar 28 10:43:06 2022 -0700
@@ -3749,10 +3749,12 @@
 
     for f in actions[b'add'][0]:
         # Don't checkout modified files, they are already created by the diff
-        if f not in newlyaddedandmodifiedfiles:
-            prntstatusmsg(b'add', f)
-            checkout(f)
-            repo.dirstate.set_tracked(f)
+        if f in newlyaddedandmodifiedfiles:
+            continue
+
+        prntstatusmsg(b'add', f)
+        checkout(f)
+        repo.dirstate.set_tracked(f)
 
     for f in actions[b'undelete'][0]:
         if interactive: