Mercurial > public > mercurial-scm > hg
diff mercurial/match.py @ 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 | e073ac988b51 |
children | 3cb9468535bd |
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):