forked from loafle/openapi-generator-original
@@ -165,8 +165,9 @@ public class TypeScriptAngularClientCodegen extends AbstractTypeScriptClientCode
|
|||||||
if (!additionalProperties.containsKey(PROVIDED_IN_ROOT)) {
|
if (!additionalProperties.containsKey(PROVIDED_IN_ROOT)) {
|
||||||
additionalProperties.put(PROVIDED_IN_ROOT, true);
|
additionalProperties.put(PROVIDED_IN_ROOT, true);
|
||||||
} else {
|
} else {
|
||||||
additionalProperties.put(PROVIDED_IN_ROOT, Boolean.valueOf(
|
additionalProperties.put(PROVIDED_IN_ROOT, Boolean.parseBoolean(
|
||||||
(String) additionalProperties.get(PROVIDED_IN_ROOT)));
|
additionalProperties.get(PROVIDED_IN_ROOT).toString()
|
||||||
|
));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
additionalProperties.put(PROVIDED_IN_ROOT, false);
|
additionalProperties.put(PROVIDED_IN_ROOT, false);
|
||||||
|
|||||||
Reference in New Issue
Block a user