sparse: use `update_file` instead of `normal` in `refreshwdir`
This is the newer, more semantic API.
Differential Revision: https://phab.mercurial-scm.org/D11152
--- a/mercurial/sparse.py Mon Jul 19 01:58:24 2021 +0200
+++ b/mercurial/sparse.py Mon Jul 19 01:58:34 2021 +0200
@@ -565,7 +565,7 @@
# Fix dirstate
for file in added:
- dirstate.normal(file)
+ dirstate.update_file(file, p1_tracked=True, wc_tracked=True)
for file in dropped:
dirstate.drop(file)