File tree 1 file changed +7
-0
lines changed
sfdx-source/core/main/classes/framework-domain-process-injection
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -366,16 +366,23 @@ public class DomainProcessCoordinator
366
366
((IDomainProcessWithParamsCriteria )criteriaClazz ).setParams (params );
367
367
}
368
368
369
+ // let the criteria class reduce the list of records further
369
370
List <SObject > criteriaRunResult = criteriaClazz .run ();
371
+ // if the domain process is logical inverse
370
372
if (currentDomainProcess .LogicalInverse__c == true )
371
373
{
374
+ // then look through all of the records returned from the criteria class
372
375
for (SObject currentSObject : criteriaRunResult )
373
376
{
377
+ // and look through all qualifiedRecords
374
378
for (Integer i = 0 ; i < qualifiedRecords .size (); i ++ )
375
379
{
380
+ // take the current qualified record
376
381
SObject currentQualifiedRecord = qualifiedRecords [i ];
382
+ // compare the sobjects
377
383
if (currentSObject == currentQualifiedRecord )
378
384
{
385
+ // remove that record from the
379
386
qualifiedRecords .remove (i );
380
387
break ;
381
388
}
You can’t perform that action at this time.
0 commit comments