merge identical (ignoring case) persons during import #142

Merged
hsh-michaelhoennig merged 3 commits from feature/merge-identical-persons-in-import into master 2025-01-03 09:49:23 +01:00
Showing only changes of commit 049fa83aba - Show all commits

View File

@ -1140,8 +1140,6 @@ public abstract class BaseOfficeDataImport extends CsvDataImport {
if ( !distinctPersons.containsKey(personKey) ) {
distinctPersons.put(personKey, person);
} else {
person.toString(); // FIXME: remove
}
return distinctPersons.get(personKey);
}