graph cleaning refactoring #282

Merged
claudio.atzori merged 10 commits from graph_cleaning_refactoring into beta 2023-05-02 10:40:03 +02:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 864f4051d3 - Show all commits

View File

@ -169,7 +169,6 @@ public class CleanGraphSparkJob {
} else {
save(cleaned_basic, outputPath);
}
} else if (Boolean.TRUE.equals(ModelSupport.isSubClass(clazz, Result.class))) {
// load the hostedby mapping
@ -191,6 +190,8 @@ public class CleanGraphSparkJob {
Encoders.bean(clazz));
save(cleaned_deep, outputPath);
} else {
save(cleaned_basic, outputPath);
}
}