Skip to content

Commit

Permalink
Merge pull request #800 from modelix/fix/typo-backwards-compatibility
Browse files Browse the repository at this point in the history
fix(model-api): fix typo that breaks backwards compatibility
  • Loading branch information
benedekh authored Jun 10, 2024
2 parents 55eeed3 + a8de09f commit 31fd887
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ interface INode {
* @return the serialized reference of the source node, if this one was created during an import
*/
fun getOriginalReference(): String? = getPropertyValue(IProperty.fromName(NodeData.ID_PROPERTY_KEY))
?: getPropertyValue(IProperty.fromName("#mpsNodeID#")) // for backwards compatibility
?: getPropertyValue(IProperty.fromName("#mpsNodeId#")) // for backwards compatibility

// <editor-fold desc="non-string based API">
fun usesRoleIds(): Boolean = false
Expand Down

0 comments on commit 31fd887

Please sign in to comment.