Skip to content

Commit 5bea4ff

Browse files
committed
added some minor comments to help me remember how this works
1 parent d37b87a commit 5bea4ff

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

sfdx-source/core/main/classes/framework-domain-process-injection/DomainProcessCoordinator.cls

+7
Original file line numberDiff line numberDiff line change
@@ -366,16 +366,23 @@ public class DomainProcessCoordinator
366366
((IDomainProcessWithParamsCriteria)criteriaClazz).setParams(params);
367367
}
368368

369+
// let the criteria class reduce the list of records further
369370
List<SObject> criteriaRunResult = criteriaClazz.run();
371+
// if the domain process is logical inverse
370372
if (currentDomainProcess.LogicalInverse__c == true)
371373
{
374+
// then look through all of the records returned from the criteria class
372375
for (SObject currentSObject : criteriaRunResult)
373376
{
377+
// and look through all qualifiedRecords
374378
for (Integer i = 0; i < qualifiedRecords.size(); i++)
375379
{
380+
// take the current qualified record
376381
SObject currentQualifiedRecord = qualifiedRecords[i];
382+
// compare the sobjects
377383
if (currentSObject == currentQualifiedRecord)
378384
{
385+
// remove that record from the
379386
qualifiedRecords.remove(i);
380387
break;
381388
}

0 commit comments

Comments
 (0)