Skip to content

Commit

Permalink
ALS-7882: Add locale for checkmarx
Browse files Browse the repository at this point in the history
  • Loading branch information
ramari16 committed Dec 9, 2024
1 parent 42239b5 commit c170e7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public List<InfoColumnMeta> getInfoStoreMeta() {
public List<String> searchInfoConceptValues(String conceptPath, String query) {
try {
return genomicProcessor.getInfoStoreValues(conceptPath).stream()
.filter(variableValue -> variableValue.toUpperCase().contains(query.toUpperCase()))
.filter(variableValue -> variableValue.toUpperCase(Locale.ENGLISH).contains(query.toUpperCase(Locale.ENGLISH)))
.collect(Collectors.toList());
} catch (UncheckedExecutionException e) {
if(e.getCause() instanceof RuntimeException) {
Expand Down

0 comments on commit c170e7f

Please sign in to comment.