Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit b26479ca authored by Joze RIHTARSIC's avatar Joze RIHTARSIC
Browse files

fix case normalizer for null scheme

parent c1b5e784
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ public class CaseSensitivityNormalizer {
public ParticipantIdentifierType normalizeParticipantIdentifier(String scheme, String value) {
List<String> caseSensitiveParticipantSchemes = configurationService.getCaseSensitiveParticipantScheme();
if (caseSensitiveParticipantSchemes == null || !caseSensitiveParticipantSchemes.stream().anyMatch(scheme::equalsIgnoreCase)) {
if (scheme==null || caseSensitiveParticipantSchemes == null || !caseSensitiveParticipantSchemes.stream().anyMatch(scheme::equalsIgnoreCase)) {
scheme = StringUtils.lowerCase(scheme);
value = StringUtils.lowerCase(value);
}
......@@ -62,7 +62,7 @@ public class CaseSensitivityNormalizer {
public DocumentIdentifier normalizeDocumentIdentifier(String scheme, String value) {
List<String> caseSensitiveDocumentSchemes = configurationService.getCaseSensitiveDocumentScheme();
if (caseSensitiveDocumentSchemes == null || !caseSensitiveDocumentSchemes.stream().anyMatch(scheme::equalsIgnoreCase)) {
if (scheme==null || caseSensitiveDocumentSchemes == null || !caseSensitiveDocumentSchemes.stream().anyMatch(scheme::equalsIgnoreCase)) {
scheme = StringUtils.lowerCase(scheme);
value = StringUtils.lowerCase(value);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment