[graph cleaning] rule out datasources without an officialname

This commit is contained in:
Claudio Atzori 2024-02-05 14:59:06 +02:00
parent 42f5506306
commit bb82052c40
1 changed files with 2 additions and 1 deletions

View File

@ -312,7 +312,8 @@ public class GraphCleaningFunctions extends CleaningFunctions {
}
if (value instanceof Datasource) {
// nothing to evaluate here
final Datasource d = (Datasource) value;
return Objects.nonNull(d.getOfficialname()) && StringUtils.isNotBlank(d.getOfficialname().getValue());
} else if (value instanceof Project) {
final Project p = (Project) value;
return Objects.nonNull(p.getCode()) && StringUtils.isNotBlank(p.getCode().getValue());