# HG changeset patch # User Siddharth Agarwal # Date 1367209772 25200 # Node ID aed8ec10c235b4515e6aabe825bd5bdad4b4072b # Parent 10103caea69d82cec8566bf59a4601bc841c2e8a match: drop dir callback dir has been subsumed by explicitdir and traversedir. diff -r 10103caea69d -r aed8ec10c235 mercurial/match.py --- 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):