Skip to content
Snippets Groups Projects
Commit 792eef49 authored by Vincent Aravantinos's avatar Vincent Aravantinos
Browse files

makes the status outdated by default

refs 2620
parent 273494b6
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ import org.fortiss.tooling.kernel.utils.ConstraintsUtils;
* @author aravantinos
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: 18F219CC447CE3CDFA1187BDD7D4D5D4
* @ConQAT.Rating YELLOW Hash: 969B692272F9776219AF3778ADD3F5DE
*/
public class ConstraintVerifierBases {
......@@ -68,7 +68,11 @@ public class ConstraintVerifierBases {
if(ConstraintsUtils.getConstraintOfType(constrained, getID()) != null) {
return null;
}
return createConstraintIfNeeded(constrained);
Constraint c = createConstraintIfNeeded(constrained);
if(c != null) {
ConstraintsUtils.createOutdatedVerificationStatus(c);
}
return c;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment