File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
model-api/src/commonMain/kotlin/org/modelix/model/data Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ sealed interface IConceptFeatureData {
40
40
}
41
41
42
42
@Serializable
43
- data class PropertyData (
43
+ data class PropertyData (
44
44
override val uid : String? = null ,
45
45
override val name : String ,
46
46
val type : PropertyType = PropertyType .STRING ,
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ data class NodeData(
70
70
71
71
fun NodeData.uid (model : ModelData ): String {
72
72
return (model.id ? : throw IllegalArgumentException (" Model has no ID" )) +
73
- " /" +
74
- (id ? : throw IllegalArgumentException (" Node has no ID" ))
73
+ " /" +
74
+ (id ? : throw IllegalArgumentException (" Node has no ID" ))
75
75
}
76
- fun ModelData.nodeUID (node : NodeData ): String = node.uid(this )
76
+ fun ModelData.nodeUID (node : NodeData ): String = node.uid(this )
You can’t perform that action at this time.
0 commit comments