File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
model-datastructure/src/commonMain/kotlin/org/modelix/model/lazy Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -486,13 +486,14 @@ class CLTree : ITree, IBulkTree {
486
486
}
487
487
if (oldElement.parentId != newElement.parentId) {
488
488
visitor.containmentChanged(key)
489
- } else if (oldElement.concept != newElement.concept) {
490
- visitor.conceptChanged(key)
491
489
} else if (oldElement.roleInParent != newElement.roleInParent) {
492
490
visitor.containmentChanged(key)
493
491
notifyChildrenChange(oldElement.parentId, oldElement.roleInParent)
494
492
notifyChildrenChange(newElement.parentId, newElement.roleInParent)
495
493
}
494
+ if (oldElement.concept != newElement.concept) {
495
+ visitor.conceptChanged(key)
496
+ }
496
497
oldElement.propertyRoles.asSequence()
497
498
.plus(newElement.propertyRoles.asSequence())
498
499
.distinct()
You can’t perform that action at this time.
0 commit comments