##// END OF EJS Templates
dirstate: make filterfiles private
Matt Mackall -
r4907:6a7659a0 default
parent child Browse files
Show More
@@ -274,7 +274,7 b' class dirstate(object):'
274 274 st.rename()
275 275 self._dirty = False
276 276
277 def filterfiles(self, files):
277 def _filter(self, files):
278 278 ret = {}
279 279 unknown = []
280 280
@@ -345,7 +345,7 b' class dirstate(object):'
345 345 dc = self._map.copy()
346 346 else:
347 347 files = util.unique(files)
348 dc = self.filterfiles(files)
348 dc = self._filter(files)
349 349
350 350 def imatch(file_):
351 351 if file_ not in dc and self._ignore(file_):
General Comments 0
You need to be logged in to leave comments. Login now