##// END OF EJS Templates
largefiles: fix profile of unused largefilesdirstate._ignore
Mads Kiilerich -
r21085:66c6da0b default
parent child Browse files
Show More
@@ -106,7 +106,7 b' class largefilesdirstate(dirstate.dirsta'
106 return super(largefilesdirstate, self).forget(unixpath(f))
106 return super(largefilesdirstate, self).forget(unixpath(f))
107 def normallookup(self, f):
107 def normallookup(self, f):
108 return super(largefilesdirstate, self).normallookup(unixpath(f))
108 return super(largefilesdirstate, self).normallookup(unixpath(f))
109 def _ignore(self):
109 def _ignore(self, f):
110 return False
110 return False
111
111
112 def openlfdirstate(ui, repo, create=True):
112 def openlfdirstate(ui, repo, create=True):
General Comments 0
You need to be logged in to leave comments. Login now