# HG changeset patch # User Pierre-Yves David # Date 2022-06-10 21:29:04 # Node ID 05da1f1612dba073ad4ba20a985484dbb7ea7f74 # Parent 5b7a10ddb42f4a73dddbbc8eb3c6c41cdd8dc373 sparse: drop the useless wrapping of `dirstate.set_untracked` The code of the wrapper only act in the case where the file is not tracked, so this has not effect for `untracked`. In addition the message explicitly mention `add` of a file and no test are breaking if we drop this. So we drop this for simplicity and cleanup diff --git a/hgext/sparse.py b/hgext/sparse.py --- a/hgext/sparse.py +++ b/hgext/sparse.py @@ -215,7 +215,6 @@ def _setupdirstate(ui): # Prevent adding files that are outside the sparse checkout editfuncs = [ b'set_tracked', - b'set_untracked', b'copy', ] hint = _(