files: drop now-unnecessary filtering of removed dirstate files
workingctx.matches() now filters out removed files.
Differential Revision: https://phab.mercurial-scm.org/D3712
--- a/mercurial/cmdutil.py Mon Jun 11 10:05:23 2018 -0700
+++ b/mercurial/cmdutil.py Mon Jun 11 10:09:35 2018 -0700
@@ -2134,13 +2134,9 @@
return bad, forgot
def files(ui, ctx, m, fm, fmt, subrepos):
- rev = ctx.rev()
ret = 1
- ds = ctx.repo().dirstate
for f in ctx.matches(m):
- if rev is None and ds[f] == 'r':
- continue
fm.startitem()
if ui.verbose:
fc = ctx[f]