RED-7848 - Sorting in merged dictionary differs from template dictionary in terms of capitalization

- fic cheskstyle error
This commit is contained in:
Corina Olariu 2023-10-30 15:19:28 +02:00
parent efe6dd5930
commit c2d558636c

View File

@ -54,7 +54,7 @@ import lombok.extern.slf4j.Slf4j;
public class DictionaryService {
/**
* Comparator to sort entries list
* Comparator to sort entries list.
*/
public static Comparator<String> entryComparator = (e1, e2) -> {
if (e1.compareToIgnoreCase(e2) == 0) {