##// END OF EJS Templates
largefiles: remove unnecessary clearing of status fields...
Martin von Zweigbergk -
r22523:8cd91f48 default
parent child Browse files
Show More
@@ -173,7 +173,8 b' def reposetup(ui, repo):'
173 != lfutil.hashfile(self.wjoin(lfile)):
173 != lfutil.hashfile(self.wjoin(lfile)):
174 modified.append(lfile)
174 modified.append(lfile)
175 else:
175 else:
176 clean.append(lfile)
176 if listclean:
177 clean.append(lfile)
177 lfdirstate.normal(lfile)
178 lfdirstate.normal(lfile)
178 else:
179 else:
179 tocheck = unsure + modified + added + clean
180 tocheck = unsure + modified + added + clean
@@ -185,7 +186,7 b' def reposetup(ui, repo):'
185 if ctx1[standin].data().strip() != \
186 if ctx1[standin].data().strip() != \
186 lfutil.hashfile(self.wjoin(lfile)):
187 lfutil.hashfile(self.wjoin(lfile)):
187 modified.append(lfile)
188 modified.append(lfile)
188 else:
189 elif listclean:
189 clean.append(lfile)
190 clean.append(lfile)
190 else:
191 else:
191 added.append(lfile)
192 added.append(lfile)
@@ -241,12 +242,6 b' def reposetup(ui, repo):'
241 if wlock:
242 if wlock:
242 wlock.release()
243 wlock.release()
243
244
244 if not listunknown:
245 result[4] = []
246 if not listignored:
247 result[5] = []
248 if not listclean:
249 result[6] = []
250 self.lfstatus = True
245 self.lfstatus = True
251 return result
246 return result
252
247
General Comments 0
You need to be logged in to leave comments. Login now