Pull request #128: Fixed importing caseinsensitive dictionaties
Merge in RED/redaction-service from caseInSensFix to master * commit 'bd56364cc3bfa25084069c79bef107869bdc5574': Fixed importing caseinsensitive dictionaties
This commit is contained in:
commit
93dcd6b9f7
@ -128,7 +128,7 @@ public class DictionaryService {
|
||||
.getEntries());
|
||||
|
||||
if (t.isCaseInsensitive()) {
|
||||
entries.forEach(entry -> entry.getValue().toLowerCase(Locale.ROOT));
|
||||
entries.forEach(entry -> entry.setValue(entry.getValue().toLowerCase(Locale.ROOT)));
|
||||
}
|
||||
return entries;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user