We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 390a9ca commit 8edc5c4Copy full SHA for 8edc5c4
bulk-model-sync-gradle/src/main/kotlin/org/modelix/model/sync/bulk/gradle/tasks/ImportIntoModelServer.kt
@@ -99,7 +99,10 @@ abstract class ImportIntoModelServer @Inject constructor(of: ObjectFactory) : De
99
100
logger.info("Setting meta properties...")
101
for ((key, value) in metaProperties.get()) {
102
- rootNode.setPropertyValue(IProperty.fromName(key), value)
+ val property = IProperty.fromName(key)
103
+ if (rootNode.getPropertyValue(property) == null) {
104
+ rootNode.setPropertyValue(property, value)
105
+ }
106
}
107
108
logger.info("Sending diff to server...")
0 commit comments