Mercurial > public > mercurial-scm > hg
diff mercurial/match.py @ 8682:cc7da5aae4cd
match: remove match.never
Only one user, can be translated to match.exact()
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sun, 31 May 2009 17:54:18 -0500 |
parents | b6511055d37b |
children | 0289f384e1e5 |
line wrap: on
line diff
--- a/mercurial/match.py Sun May 31 17:54:18 2009 -0500 +++ b/mercurial/match.py Sun May 31 17:54:18 2009 -0500 @@ -106,10 +106,6 @@ def __init__(self, root, cwd): match.__init__(self, root, cwd, []) -class never(match): - def __init__(self, root, cwd): - match.__init__(self, root, cwd, [], exact = True) - def patkind(pat): return _patsplit(pat, None)[0]