Applied changes made in IS Model

This commit is contained in:
Luca Frosini 2023-05-12 17:48:28 +02:00
parent 89c291c0c3
commit 11d7d34997
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ public abstract class Documentation {
stringBuffer.append("**");
stringBuffer.append(type.getName());
stringBuffer.append("**");
Set<String> superTypes = type.getTypeSuperTypes();
Set<String> superTypes = type.getExtendedTypes();
if(superClassToBeExcluded!=null) {
superTypes.remove(superClassToBeExcluded);
}