Skip to content

Commit

Permalink
JAVA 11 API
Browse files Browse the repository at this point in the history
  • Loading branch information
yesamer committed Jul 10, 2024
1 parent e3201f4 commit ba115f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public static <T> Either<String, T> resolveImportDMN(Import importElement, Colle
} else {
List<T> usingNSandName = matchingDMNList.stream()
.filter(dmn -> idExtractor.apply(dmn).getLocalPart().equals(importModelName))
.toList();
.collect(Collectors.toList());
if (usingNSandName.size() == 1) {
LOGGER.debug("DMN Model with name={} and namespace={} successfully imported a DMN " +
"with namespace={} name={} locationURI={}, modelName={}",
Expand Down

0 comments on commit ba115f3

Please sign in to comment.