File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/AasxCsharpLibrary/Extensions Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1085,18 +1085,18 @@ public static void RecurseOnReferables(this List<ISubmodelElement> submodelEleme
10851085 {
10861086 SubmodelElementCollection opVariableCollection = new SubmodelElementCollection ( ) ;
10871087 foreach ( var inputVariable in operation . InputVariables )
1088- {
1089- opVariableCollection . Value . Add ( inputVariable . Value ) ;
1088+ {
1089+ opVariableCollection . AddChild ( inputVariable . Value ) ;
10901090 }
10911091
10921092 foreach ( var outputVariable in operation . OutputVariables )
10931093 {
1094- opVariableCollection . Value . Add ( outputVariable . Value ) ;
1094+ opVariableCollection . AddChild ( outputVariable . Value ) ;
10951095 }
10961096
10971097 foreach ( var inOutVariable in operation . InoutputVariables )
10981098 {
1099- opVariableCollection . Value . Add ( inOutVariable . Value ) ;
1099+ opVariableCollection . AddChild ( inOutVariable . Value ) ;
11001100 }
11011101
11021102 opVariableCollection . Value . RecurseOnReferables ( state , parents , lambda ) ;
You can’t perform that action at this time.
0 commit comments