Describe the bug
TaskService.getIdentityLInksForTask(taskId) is duplicating IdentityLink in results. Looks like same IdentityLink added to list twice.
Expected behavior
TaskService.getIdentityLInksForTask(taskId) should not duplicate IdentityLink in results.
Code

Additional context
https://github.com/flowable/flowable-engine/blob/main/modules/flowable-task-service/src/main/java/org/flowable/task/service/impl/persistence/entity/TaskEntityImpl.java#L247-L270
Here, getCandidates method returns set, but getIdentityLinks returns map. So duplicates are removed for getCandidates method.