##// 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 173 != lfutil.hashfile(self.wjoin(lfile)):
174 174 modified.append(lfile)
175 175 else:
176 clean.append(lfile)
176 if listclean:
177 clean.append(lfile)
177 178 lfdirstate.normal(lfile)
178 179 else:
179 180 tocheck = unsure + modified + added + clean
@@ -185,7 +186,7 b' def reposetup(ui, repo):'
185 186 if ctx1[standin].data().strip() != \
186 187 lfutil.hashfile(self.wjoin(lfile)):
187 188 modified.append(lfile)
188 else:
189 elif listclean:
189 190 clean.append(lfile)
190 191 else:
191 192 added.append(lfile)
@@ -241,12 +242,6 b' def reposetup(ui, repo):'
241 242 if wlock:
242 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 245 self.lfstatus = True
251 246 return result
252 247
General Comments 0
You need to be logged in to leave comments. Login now