This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Developed by Doug Ayers (douglascayers.com) | |
*/ | |
public with sharing class DuplicateRecordUtils { | |
public static Set<ID> getDuplicateRecordIds( ID recordId ) { | |
Set<ID> duplicateRecordIds = new Set<ID>(); | |
// Potential duplicate records are grouped together into 'duplicate record sets'. |