master #59

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

View File

@ -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;
}