Master branch updates from beta September 2023 #337

Manually merged
claudio.atzori merged 1271 commits from beta into master 2023-09-06 11:31:09 +02:00
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;
}