mq: replace `drop` call with newer API
authorPierre-Yves David <pierre-yves.david@octobus.net>
Sun, 18 Jul 2021 22:32:55 +0200
changeset 47751 d25eb277e925
parent 47750 13e2ce796dcd
child 47752 5bcd305389c7
mq: replace `drop` call with newer API Differential Revision: https://phab.mercurial-scm.org/D11193
hgext/mq.py
--- a/hgext/mq.py	Mon Jul 19 09:15:37 2021 +0200
+++ b/hgext/mq.py	Sun Jul 18 22:32:55 2021 +0200
@@ -1842,7 +1842,9 @@
                 with repo.dirstate.parentchange():
                     for f in a:
                         repo.wvfs.unlinkpath(f, ignoremissing=True)
-                        repo.dirstate.drop(f)
+                        repo.dirstate.update_file(
+                            f, p1_tracked=False, wc_tracked=False
+                        )
                     for f in m + r:
                         fctx = ctx[f]
                         repo.wwrite(f, fctx.data(), fctx.flags())
@@ -2044,7 +2046,7 @@
                     for f in mm:
                         repo.dirstate.update_file_p1(f, p1_tracked=True)
                     for f in forget:
-                        repo.dirstate.drop(f)
+                        repo.dirstate.update_file_p1(f, p1_tracked=False)
 
                     user = ph.user or ctx.user()