Mercurial > hg
changeset 33937:e43264525ce5
context: remove unnecessary default values for matchers (API)
ctx._dirstatestatus() is called only from workingctx._buildstatus()
and that function, in turn, is called only from
basectx.status(). basectx.status() will always pass a matcher to
_buildstatus(), so there's no need to handle a None matcher there.
Differential Revision: https://phab.mercurial-scm.org/D492
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Tue, 22 Aug 2017 23:39:05 -0700 |
parents | c714e82b9ac2 |
children | 9180f8f593f3 |
files | mercurial/context.py |
diffstat | 1 files changed, 2 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Tue Aug 22 23:27:55 2017 -0700 +++ b/mercurial/context.py Tue Aug 22 23:39:05 2017 -0700 @@ -1750,11 +1750,9 @@ # Even if the wlock couldn't be grabbed, clear out the list. self._repo.clearpostdsstatus() - def _dirstatestatus(self, match=None, ignored=False, clean=False, - unknown=False): + def _dirstatestatus(self, match, ignored=False, clean=False, unknown=False): '''Gets the status from the dirstate -- internal use only.''' listignored, listclean, listunknown = ignored, clean, unknown - match = match or matchmod.always(self._repo.root, self._repo.getcwd()) subrepos = [] if '.hgsub' in self: subrepos = sorted(self.substate) @@ -1980,14 +1978,12 @@ super(workingctx, self).__init__(repo, text, user, date, extra, changes) - def _dirstatestatus(self, match=None, ignored=False, clean=False, - unknown=False): + def _dirstatestatus(self, match, ignored=False, clean=False, unknown=False): """Return matched files only in ``self._status`` Uncommitted files appear "clean" via this context, even if they aren't actually so in the working directory. """ - match = match or matchmod.always(self._repo.root, self._repo.getcwd()) if clean: clean = [f for f in self._manifest if f not in self._changedset] else: