Mercurial > hg
changeset 19141:aed8ec10c235
match: drop dir callback
dir has been subsumed by explicitdir and traversedir.
author | Siddharth Agarwal <sid0@fb.com> |
---|---|
date | Sun, 28 Apr 2013 21:29:32 -0700 |
parents | 10103caea69d |
children | c3d3e4d75ec3 |
files | mercurial/match.py |
diffstat | 1 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/match.py Sun Apr 28 21:28:31 2013 -0700 +++ b/mercurial/match.py Sun Apr 28 21:29:32 2013 -0700 @@ -119,12 +119,10 @@ found/accessed, with an error message ''' pass - def dir(self, f): + def explicitdir(self, f): pass - def explicitdir(self, f): - self.dir(f) def traversedir(self, f): - self.dir(f) + pass def missing(self, f): pass def exact(self, f):