forked from loafle/openapi-generator-original
Remove extra bracket to fix compilation (#19464)
This commit is contained in:
parent
4330b2f46d
commit
d6780e7d43
@ -112,7 +112,7 @@ public class {{classname}} extends AbstractOpenApiSchema{{#vendorExtensions.x-im
|
|||||||
attemptParsing |= (token == JsonToken.VALUE_NUMBER_FLOAT);
|
attemptParsing |= (token == JsonToken.VALUE_NUMBER_FLOAT);
|
||||||
{{/isDecimal}}
|
{{/isDecimal}}
|
||||||
{{#isBoolean}}
|
{{#isBoolean}}
|
||||||
attemptParsing |= (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));
|
attemptParsing |= (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE);
|
||||||
{{/isBoolean}}
|
{{/isBoolean}}
|
||||||
{{#isNullable}}
|
{{#isNullable}}
|
||||||
attemptParsing |= (token == JsonToken.VALUE_NULL);
|
attemptParsing |= (token == JsonToken.VALUE_NULL);
|
||||||
|
@ -112,7 +112,7 @@ public class {{classname}} extends AbstractOpenApiSchema{{#vendorExtensions.x-im
|
|||||||
attemptParsing |= (token == JsonToken.VALUE_NUMBER_FLOAT);
|
attemptParsing |= (token == JsonToken.VALUE_NUMBER_FLOAT);
|
||||||
{{/isDecimal}}
|
{{/isDecimal}}
|
||||||
{{#isBoolean}}
|
{{#isBoolean}}
|
||||||
attemptParsing |= (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));
|
attemptParsing |= (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE);
|
||||||
{{/isBoolean}}
|
{{/isBoolean}}
|
||||||
{{#isNullable}}
|
{{#isNullable}}
|
||||||
attemptParsing |= (token == JsonToken.VALUE_NULL);
|
attemptParsing |= (token == JsonToken.VALUE_NULL);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user