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 we generate classes that contain references to enums randomly the enums are not generated correctly: this could be solved by modifying
in class AbstractCSharpCodegen at line 438 var.allowableValues = refModel.allowableValues;
with var.allowableValues = new HashMap<>(refModel.allowableValues);
Thanks
The text was updated successfully, but these errors were encountered:
When we generate classes that contain references to enums randomly the enums are not generated correctly: this could be solved by modifying
in class AbstractCSharpCodegen at line 438
var.allowableValues = refModel.allowableValues;
with
var.allowableValues = new HashMap<>(refModel.allowableValues);
Thanks
The text was updated successfully, but these errors were encountered: