Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d5b14cc1 authored by Achraf Achkari's avatar Achraf Achkari
Browse files

SEQUOIA-387 adapt datatype inheritance check for choices

parent 93f4d519
No related branches found
No related tags found
1 merge request!17Fix SEQUOIA Confs
......@@ -109,7 +109,7 @@ public final class DTUtils {
else {
return false;
}
return !realDTConstrained.equals(typeRD) && UMLLoader.verifyTheParentOfType1IsType2(realDTConstrained, typeRD);
return !realDTConstrained.equals(typeRD) && (UMLLoader.verifyTheParentOfType1IsType2(typeRD, realDTConstrained) || UMLLoader.verifyTheParentOfType1IsType2(realDTConstrained, typeRD));
}
public static String cleanDTforIPS(String datatype){
......
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