hello all,
on gamma 2021.4 preview 602, I saw the following behavior :
- I had a Record
T
with just a few properties, and twoCreate
andSplit
operations - One of those properties was of type
Encodings
(note the plural) - In my application, I had a
Split
node of that Record and realized I actually set the wrong type, I was looking forSystem.Text.Encoding
(side note : when trying to writeEncoding
(singular) gamma forcesEncodings
(plural), and the only way to getEncoding
is to type the full name) - I went back in my Record’s definition and changed the type to be
System.Text.Encoding
- After going back to the application, the split node had a an output named
Output
of typeT
, like if was from a class rather than a record
why was this extra pin added? I thought it had to do with adding a mutable type, but then after deleting it, the output stayed there.
tried to repro in a fresh document but could not get the same behavior.
thanks!
seb