Skip to content

Commit 330e44c

Browse files
authored
Merge pull request #549 from Systems-Modeling/ST6RI-750
ST6RI-750 The elementId is not being serialized in XMI for LibraryPackages
2 parents 44b8e67 + e4ebcb9 commit 330e44c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

org.omg.sysml/syntax-gen/org/omg/sysml/lang/sysml/impl/LibraryPackageImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public String getElementId() {
112112
KERML_LIBRARY_BASE_URI: SYSML_LIBRARY_BASE_URI;
113113
String qualifiedName = getQualifiedName();
114114
if (qualifiedName != null) {
115-
return ElementUtil.constructNameUUID(UUID_NAMESPACE_URL, uri + qualifiedName).toString();
115+
elementId = ElementUtil.constructNameUUID(UUID_NAMESPACE_URL, uri + qualifiedName).toString();
116116
}
117117
}
118118
}

0 commit comments

Comments
 (0)