sparse: use `update_file` instead of `drop` in `refreshwdir`
This is the newer, more semantic API.
Differential Revision: https://phab.mercurial-scm.org/D11189
--- a/mercurial/sparse.py Mon Jul 19 09:07:08 2021 +0200
+++ b/mercurial/sparse.py Mon Jul 19 01:58:45 2021 +0200
@@ -568,7 +568,7 @@
dirstate.update_file(file, p1_tracked=True, wc_tracked=True)
for file in dropped:
- dirstate.drop(file)
+ dirstate.update_file(file, p1_tracked=False, wc_tracked=False)
for file in lookup:
# File exists on disk, and we're bringing it back in an unknown state.