@@ -443,23 +443,23 @@ export class SyncEngine implements RemoteSyncer, SharedClientStateSyncer {
443
443
// Since this is a limbo resolution lookup, it's for a single document
444
444
// and it could be added, modified, or removed, but not a combination.
445
445
assert (
446
- targetChange . addedDocuments . size +
446
+ targetChange . addedDocuments . size +
447
447
targetChange . modifiedDocuments . size +
448
448
targetChange . removedDocuments . size <=
449
449
1 ,
450
- 'Limbo resolution for single document contains multiple changes.'
450
+ 'Limbo resolution for single document contains multiple changes.'
451
451
) ;
452
452
if ( targetChange . addedDocuments . size > 0 ) {
453
453
limboResolution . receivedDocument = true ;
454
454
} else if ( targetChange . modifiedDocuments . size > 0 ) {
455
455
assert (
456
- limboResolution . receivedDocument ,
457
- 'Received change for limbo target document without add.'
456
+ limboResolution . receivedDocument ,
457
+ 'Received change for limbo target document without add.'
458
458
) ;
459
459
} else if ( targetChange . removedDocuments . size > 0 ) {
460
460
assert (
461
- limboResolution . receivedDocument ,
462
- 'Received remove for limbo target document without add.'
461
+ limboResolution . receivedDocument ,
462
+ 'Received remove for limbo target document without add.'
463
463
) ;
464
464
limboResolution . receivedDocument = false ;
465
465
} else {
0 commit comments