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.
2 parents b17cdf6 + b997ee0 commit 3241c5cCopy full SHA for 3241c5c
bulk-model-sync-gradle/src/main/kotlin/org/modelix/model/sync/bulk/gradle/tasks/ImportIntoModelServer.kt
@@ -99,10 +99,7 @@ abstract class ImportIntoModelServer @Inject constructor(of: ObjectFactory) : De
99
100
logger.info("Setting meta properties...")
101
for ((key, value) in metaProperties.get()) {
102
- val property = IProperty.fromName(key)
103
- if (rootNode.getPropertyValue(property) == null) {
104
- rootNode.setPropertyValue(property, value)
105
- }
+ rootNode.setPropertyValue(IProperty.fromName(key), value)
106
}
107
108
logger.info("Sending diff to server...")
0 commit comments