changed the logic to verify if a community is contained in the list of context of a result

This commit is contained in:
Miriam Baglioni 2021-07-13 14:22:44 +02:00
parent 2f66fedfec
commit da88c850c6
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public class CommunitySplit implements Serializable {
.stream() .stream()
.map(con -> con.getCode()) .map(con -> con.getCode())
.collect(Collectors.toList()) .collect(Collectors.toList())
.contains(c) .contains(c);
} }
return false; return false;
} }