Skip to content

Commit

Permalink
fix: revert casting for specific method
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristian N committed Dec 17, 2024
1 parent d1e8a56 commit f493b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sfdx-source/apex-common/main/classes/fflib_SObjects.cls
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public virtual class fflib_SObjects
Set<String> result = new Set<String>();
for (SObject record : getRecords())
{
result.add(String.valueOf(record.get(field)));
result.add((String) record.get(field));
}
return result;
}
Expand Down

0 comments on commit f493b72

Please sign in to comment.