Skip to content

Commit

Permalink
Merge pull request #2562 from DuckflipXYZ/2491
Browse files Browse the repository at this point in the history
#2491 : HashMap -> LinkedHashMap for sorting preservation
  • Loading branch information
michaelkain authored Jan 6, 2025
2 parents fce5bbf + a65d2a2 commit d7c8af2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class ImporterMailService {
public void sendImportEmail(ImportJob importJob, Long userId, Examination examination, Set<DatasetAcquisition> generatedAcquisitions) {
EmailDatasetsImported generatedMail = new EmailDatasetsImported();

Map<Long, String> datasets = new HashMap<>();
LinkedHashMap<Long, String> datasets = new LinkedHashMap<>();
if (CollectionUtils.isEmpty(generatedAcquisitions)) {
return;
}
Expand Down

0 comments on commit d7c8af2

Please sign in to comment.