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
When YAMS encounters an empty string when decoding a YAML string to Swift objects, it decodes it as nil rather than as an empty string. This results in discrepancies between the original file and the round-tripped file.
As a workaround, replace all empty strings in the code model file with a space '' -> ' '
jpsim/Yams#253
When YAMS encounters an empty string when decoding a YAML string to Swift objects, it decodes it as
nilrather than as an empty string. This results in discrepancies between the original file and the round-tripped file.As a workaround, replace all empty strings in the code model file with a space
'' -> ' '