match: drop dir callback
authorSiddharth Agarwal <sid0@fb.com>
Sun, 28 Apr 2013 21:29:32 -0700
changeset 19141 aed8ec10c235
parent 19140 10103caea69d
child 19142 c3d3e4d75ec3
match: drop dir callback dir has been subsumed by explicitdir and traversedir.
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):