Skip to content

Commit 31fd887

Browse files
authored
Merge pull request #800 from modelix/fix/typo-backwards-compatibility
fix(model-api): fix typo that breaks backwards compatibility
2 parents 55eeed3 + a8de09f commit 31fd887

File tree

1 file changed

+1
-1
lines changed
  • model-api/src/commonMain/kotlin/org/modelix/model/api

1 file changed

+1
-1
lines changed

model-api/src/commonMain/kotlin/org/modelix/model/api/INode.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ interface INode {
215215
* @return the serialized reference of the source node, if this one was created during an import
216216
*/
217217
fun getOriginalReference(): String? = getPropertyValue(IProperty.fromName(NodeData.ID_PROPERTY_KEY))
218-
?: getPropertyValue(IProperty.fromName("#mpsNodeID#")) // for backwards compatibility
218+
?: getPropertyValue(IProperty.fromName("#mpsNodeId#")) // for backwards compatibility
219219

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

0 commit comments

Comments
 (0)