When using the ChangeDetector, the order of the output is different then the input. For example:
Input Original 12,5,13,8,4
Input Revised 10,4,11,6,1,8,14,2
Output Unchanged 4,8
Output Added 1,10,2,14,6,11
Output Deleted 13,12,5
I can't find the logic of it. Does anyone know? The solution I have is using the sorter afterwards, but I want to prevend to using it because of the long processing time with large datasets.