##// END OF EJS Templates
localrepo: drop the deprecated walk() method (API)...
Matt Harbison -
r35914:ed3a7300 default
parent child Browse files
Show More
@@ -2048,15 +2048,6 b' class localrepository(object):'
2048 # tag cache retrieval" case to work.
2048 # tag cache retrieval" case to work.
2049 self.invalidate()
2049 self.invalidate()
2050
2050
2051 def walk(self, match, node=None):
2052 '''
2053 walk recursively through the directory tree or a given
2054 changeset, finding all files matched by the match
2055 function
2056 '''
2057 self.ui.deprecwarn('use repo[node].walk instead of repo.walk', '4.3')
2058 return self[node].walk(match)
2059
2060 def status(self, node1='.', node2=None, match=None,
2051 def status(self, node1='.', node2=None, match=None,
2061 ignored=False, clean=False, unknown=False,
2052 ignored=False, clean=False, unknown=False,
2062 listsubrepos=False):
2053 listsubrepos=False):
General Comments 0
You need to be logged in to leave comments. Login now