forked from loafle/openapi-generator-original
Fixing conversion when it's an item of a collection + add missing isUuid in objects (#6473)
This commit is contained in:
committed by
wing328
parent
e626afaf1a
commit
bcfd14551a
@@ -231,6 +231,8 @@ public class CodegenParameter {
|
||||
return false;
|
||||
if (isDateTime != that.isDateTime)
|
||||
return false;
|
||||
if (isUuid != that.isUuid)
|
||||
return false;
|
||||
if (isListContainer != that.isListContainer)
|
||||
return false;
|
||||
if (isMapContainer != that.isMapContainer)
|
||||
@@ -312,6 +314,7 @@ public class CodegenParameter {
|
||||
result = 31 * result + (isBoolean ? 13:31);
|
||||
result = 31 * result + (isDate ? 13:31);
|
||||
result = 31 * result + (isDateTime ? 13:31);
|
||||
result = 31 * result + (isUuid ? 13:31);
|
||||
result = 31 * result + (isListContainer ? 13:31);
|
||||
result = 31 * result + (isMapContainer ? 13:31);
|
||||
result = 31 * result + (isFile ? 13:31);
|
||||
|
||||
@@ -126,6 +126,7 @@ public class CodegenProperty implements Cloneable {
|
||||
result = prime * result + ((isBoolean ? 13:31));
|
||||
result = prime * result + ((isDate ? 13:31));
|
||||
result = prime * result + ((isDateTime ? 13:31));
|
||||
result = prime * result + ((isUuid ? 13:31));
|
||||
result = prime * result + ((isMapContainer ? 13:31));
|
||||
result = prime * result + ((isListContainer ? 13:31));
|
||||
result = prime * result + Objects.hashCode(isInherited);
|
||||
|
||||
Reference in New Issue
Block a user