##// END OF EJS Templates
largefiles: simplify iteration over standins...
Martin von Zweigbergk -
r22525:764127f5 default
parent child Browse files
Show More
@@ -193,9 +193,7 b' def reposetup(ui, repo):'
193
193
194 # Standins no longer found in lfdirstate has been
194 # Standins no longer found in lfdirstate has been
195 # removed
195 # removed
196 for standin in ctx1.manifest():
196 for standin in ctx1.walk(lfutil.getstandinmatcher(self)):
197 if not lfutil.isstandin(standin):
198 continue
199 lfile = lfutil.splitstandin(standin)
197 lfile = lfutil.splitstandin(standin)
200 if not match(lfile):
198 if not match(lfile):
201 continue
199 continue
General Comments 0
You need to be logged in to leave comments. Login now