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
It was detected in testComplexAnyOf .
The object definition "enumField" has "defaultValue" and "defaultValues" parameters and this creates duplicate method defaultValue, one for the defaultValues builder and the other for the defaultValue parameter.
It can be fixed by removing the parameter "defaultValue" from "enumFiled".
The text was updated successfully, but these errors were encountered:
Hi,
That is not an issue that defaultValues is a List so Builder we generate will contain a method for a defaultValues(List and a defaultValue to add a single element to the list.
In that example, the file was right but the builder generate a controversial one, since is a legal one but not a valid one.
It was detected in testComplexAnyOf .
The object definition "enumField" has "defaultValue" and "defaultValues" parameters and this creates duplicate method defaultValue, one for the defaultValues builder and the other for the defaultValue parameter.
It can be fixed by removing the parameter "defaultValue" from "enumFiled".
The text was updated successfully, but these errors were encountered: