Skip to content
Snippets Groups Projects

FIX for #166

Merged Timm Fitschen requested to merge f-issue-166 into dev
All threads resolved!
1 file
+ 1
4
Compare changes
  • Side-by-side
  • Inline
@@ -119,7 +119,7 @@ public class Inheritance extends EntityJob {
}
// implement properties
if (getEntity().hasProperties()) {
if (getEntity().getEntityStatus() == EntityStatus.QUALIFIED && getEntity().hasProperties()) {
propertyLoop:
for (final Property property : getEntity().getProperties()) {
final ArrayList<Property> transfer = new ArrayList<>();
@@ -140,9 +140,6 @@ public class Inheritance extends EntityJob {
if (getEntity().hasParents()) {
outer:
for (EntityInterface par : getEntity().getParents()) {
if (par.getEntityStatus() == EntityStatus.UNQUALIFIED) {
continue;
}
if (!par.hasProperties()) {
par = resolve(par);
}
Loading