This commit is contained in:
deiflaender 2022-03-15 17:20:58 +01:00
parent 62958299d6
commit 56aeaea85e

View File

@ -142,7 +142,7 @@ public class DictionaryService {
Set<DictionaryEntry> entries = new HashSet<>(type Set<DictionaryEntry> entries = new HashSet<>(type
.getEntries()); .getEntries());
log.info("TypeId: {} From version is {} entries are {}", typeId, fromVersion, entries.stream().map(e -> e.getValue() + e.getVersion()).collect(Collectors.toList())); log.info("TypeId: {} From version is {} entries are {}", typeId, fromVersion, entries.stream().map(e -> e.getValue() + e.getVersion() + e.isDeleted()).collect(Collectors.toList()));
if (type.isCaseInsensitive()) { if (type.isCaseInsensitive()) {
entries.forEach(entry -> entry.setValue(entry.getValue().toLowerCase(Locale.ROOT))); entries.forEach(entry -> entry.setValue(entry.getValue().toLowerCase(Locale.ROOT)));