Skip to content
Snippets Groups Projects
Verified Commit fc2457f7 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

FIX for server#166

parent acd45b47
No related branches found
No related tags found
2 merge requests!96DOC: Added CITATION.cff to the list of files in the release guide where the...,!88FIX for #166
Pipeline #35144 passed
...@@ -119,7 +119,7 @@ public class Inheritance extends EntityJob { ...@@ -119,7 +119,7 @@ public class Inheritance extends EntityJob {
} }
// implement properties // implement properties
if (getEntity().hasProperties()) { if (getEntity().getEntityStatus() == EntityStatus.QUALIFIED && getEntity().hasProperties()) {
propertyLoop: propertyLoop:
for (final Property property : getEntity().getProperties()) { for (final Property property : getEntity().getProperties()) {
final ArrayList<Property> transfer = new ArrayList<>(); final ArrayList<Property> transfer = new ArrayList<>();
...@@ -140,9 +140,6 @@ public class Inheritance extends EntityJob { ...@@ -140,9 +140,6 @@ public class Inheritance extends EntityJob {
if (getEntity().hasParents()) { if (getEntity().hasParents()) {
outer: outer:
for (EntityInterface par : getEntity().getParents()) { for (EntityInterface par : getEntity().getParents()) {
if (par.getEntityStatus() == EntityStatus.UNQUALIFIED) {
continue;
}
if (!par.hasProperties()) { if (!par.hasProperties()) {
par = resolve(par); par = resolve(par);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment