# HG changeset patch # User Siddharth Agarwal # Date 2013-04-29 04:29:32 # Node ID aed8ec10c235b4515e6aabe825bd5bdad4b4072b # Parent 10103caea69d82cec8566bf59a4601bc841c2e8a match: drop dir callback dir has been subsumed by explicitdir and traversedir. diff --git a/mercurial/match.py b/mercurial/match.py --- a/mercurial/match.py +++ b/mercurial/match.py @@ -119,12 +119,10 @@ class match(object): 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):