##// END OF EJS Templates
dirstate: reorder "state" checking conditional...
marmoute -
r48322:174d0bcc default
parent child Browse files
Show More
@@ -1315,6 +1315,12 b' class dirstate(object):'
1315
1315
1316 if not st and t.tracked:
1316 if not st and t.tracked:
1317 dadd(fn)
1317 dadd(fn)
1318 elif t.merged:
1319 madd(fn)
1320 elif t.added:
1321 aadd(fn)
1322 elif t.removed:
1323 radd(fn)
1318 elif state == b'n':
1324 elif state == b'n':
1319 if (
1325 if (
1320 size >= 0
1326 size >= 0
@@ -1344,12 +1350,6 b' class dirstate(object):'
1344 ladd(fn)
1350 ladd(fn)
1345 elif listclean:
1351 elif listclean:
1346 cadd(fn)
1352 cadd(fn)
1347 elif t.merged:
1348 madd(fn)
1349 elif t.added:
1350 aadd(fn)
1351 elif t.removed:
1352 radd(fn)
1353 status = scmutil.status(
1353 status = scmutil.status(
1354 modified, added, removed, deleted, unknown, ignored, clean
1354 modified, added, removed, deleted, unknown, ignored, clean
1355 )
1355 )
General Comments 0
You need to be logged in to leave comments. Login now