-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
There seems to be a bug in SourceTransforms.vb in the Process method.
Where the code checks to see whether the end of a set of If...Then...ElseIf... statements in Transformations code, the following code was not allowing the last ElseIf Node/BlockOfCode to be executed (in the Process method).
Else 'Up to the end
'Bug found: Will not process the last elseif when "-1" is left in below.
upper = node.Nodes.Count - 1
We changed the code to the following and it worked fine:
Else 'Up to the end
upper = node.Nodes.Count
The error was that the last 'Transform' was not being done, and where, for instance, if we were modifying a col field variable, the default would be returned rather than the transform. This, at least, in our copy.
Metadata
Metadata
Assignees
Labels
No labels