fixed exam name error

This commit is contained in:
anhefti 2022-05-25 09:16:25 +02:00
parent ceb2a53c83
commit 377167132f

View file

@ -684,6 +684,8 @@ public class ResourceService {
.call() .call()
.getOr(Collections.emptyList()) .getOr(Collections.emptyList())
.stream() .stream()
.filter(entityName -> StringUtils.isNotBlank(entityName.name)
&& StringUtils.isNotBlank(entityName.modelId))
.map(entityName -> new Tuple<>(entityName.modelId, entityName.name)) .map(entityName -> new Tuple<>(entityName.modelId, entityName.name))
.sorted(RESOURCE_COMPARATOR) .sorted(RESOURCE_COMPARATOR)
.collect(Collectors.toList()); .collect(Collectors.toList());
@ -697,7 +699,7 @@ public class ResourceService {
.call() .call()
.getOr(Collections.emptyList()) .getOr(Collections.emptyList())
.stream() .stream()
.filter(k -> StringUtils.isNotBlank(k.modelId)) .filter(k -> StringUtils.isNotBlank(k.name) && StringUtils.isNotBlank(k.modelId))
.collect(Collectors.toMap( .collect(Collectors.toMap(
k -> Long.valueOf(k.modelId), k -> Long.valueOf(k.modelId),
k -> k.name)); k -> k.name));