Mercurial > hg
changeset 23240:c26073dfbbe6
context.status: remove now-empty _prestatus()
author | Martin von Zweigbergk <martinvonz@gmail.com> |
---|---|
date | Sun, 12 Oct 2014 00:06:40 -0700 |
parents | 9fbb50444d55 |
children | dd610f1d46c9 |
files | mercurial/context.py |
diffstat | 1 files changed, 0 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Sat Oct 11 23:30:08 2014 -0700 +++ b/mercurial/context.py Sun Oct 12 00:06:40 2014 -0700 @@ -93,14 +93,6 @@ """ return match or matchmod.always(self._repo.root, self._repo.getcwd()) - def _prestatus(self, other): - """provide a hook to allow child objects to preprocess status results - - For example, this allows other contexts, such as workingctx, to query - the dirstate before comparing the manifests. - """ - pass - def _poststatus(self, other, s, match, listignored, listclean, listunknown): """provide a hook to allow child objects to postprocess status results @@ -311,7 +303,6 @@ ctx1, ctx2 = ctx2, ctx1 match = ctx2._matchstatus(ctx1, match) - ctx2._prestatus(ctx1) r = [[], [], [], [], [], [], []] r = ctx2._buildstatus(ctx1, r, match, listignored, listclean, listunknown) @@ -1410,15 +1401,6 @@ del mf[f] return mf - def _prestatus(self, other): - """override the parent hook with a dirstate query - - We use this _prestatus hook to populate the status with information from - the dirstate. - """ - # doesn't need to call super - pass - def _poststatus(self, other, s, match, listignored, listclean, listunknown): """override the parent hook with a filter for suspect symlinks