master #59

Closed
claudio.atzori wants to merge 3221 commits from master into stable_ids
1 changed files with 9 additions and 0 deletions
Showing only changes of commit cd379eb5e3 - Show all commits

View File

@ -190,6 +190,15 @@ public class CleaningFunctions {
}
}
if (Objects.nonNull(r.getAuthor())) {
r
.setAuthor(
r
.getAuthor()
.stream()
.filter(a -> Objects.nonNull(a))
.filter(a -> StringUtils.isNotBlank(StringUtils.trim(a.getFullname())))
.collect(Collectors.toList()));
boolean nullRank = r
.getAuthor()
.stream()