We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22b6787 commit f39675bCopy full SHA for f39675b
modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/SpringCodegen.java
@@ -630,17 +630,6 @@ public void processOpts() {
630
modelTemplateFiles.clear();
631
}
632
supportsAdditionalPropertiesWithComposedSchema = true;
633
-
634
- if (useBeanValidation) {
635
- if (additionalProperties.containsKey(USE_SPRING_BUILT_IN_VALIDATION)) {
636
- this.useSpringBuiltInValidation = Boolean.parseBoolean(
637
- additionalProperties.get(USE_SPRING_BUILT_IN_VALIDATION).toString()
638
- );
639
- } else {
640
- this.useSpringBuiltInValidation = false;
641
- }
642
- additionalProperties.put(USE_SPRING_BUILT_IN_VALIDATION, useSpringBuiltInValidation);
643
644
645
646
private boolean containsEnums() {
0 commit comments