forked from D-Net/dnet-hadoop
rule out records with NULL dataInfo, except for Relations
This commit is contained in:
parent
11ffb9bd68
commit
b9dddbfe54
|
@ -228,7 +228,7 @@ public class GraphCleaningFunctions extends CleaningFunctions {
|
|||
}
|
||||
|
||||
public static <T extends Oaf> boolean filter(T value) {
|
||||
if (Boolean.TRUE
|
||||
if (!(value instanceof Relation) && (Boolean.TRUE
|
||||
.equals(
|
||||
Optional
|
||||
.ofNullable(value)
|
||||
|
@ -240,7 +240,7 @@ public class GraphCleaningFunctions extends CleaningFunctions {
|
|||
.ofNullable(d.getInvisible())
|
||||
.orElse(true))
|
||||
.orElse(false))
|
||||
.orElse(true))) {
|
||||
.orElse(true)))) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue