You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Attribute.cs
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -188,8 +188,11 @@ public object? Value
188
188
if(arr_elem==null)continue;
189
189
elseif(arr_elem.Owner==null)
190
190
arr_elem.Owner=OwnerDatamodel;
191
-
elseif(arr_elem.Owner!=OwnerDatamodel)
192
-
thrownewElementOwnershipException("One or more Elements in the assigned collection are from a different Datamodel. Use ImportElement() to copy them to this one before assigning.");
191
+
192
+
// todo: remove ownership from values
193
+
// this is being printed on a debuggerdisplay output for some reason
194
+
// else if (arr_elem.Owner != OwnerDatamodel)
195
+
// throw new ElementOwnershipException("One or more Elements in the assigned collection are from a different Datamodel. Use ImportElement() to copy them to this one before assigning.");
0 commit comments