diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/features/DocumentationProviderFeatures.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/features/DocumentationProviderFeatures.java index 9b75bbeaa05e..eaa403a10ac0 100644 --- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/features/DocumentationProviderFeatures.java +++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/features/DocumentationProviderFeatures.java @@ -3,7 +3,6 @@ import java.util.Arrays; import java.util.Collections; import java.util.List; -import java.util.Locale; import java.util.Objects; /** @@ -91,7 +90,7 @@ enum DocumentationProvider { } public static DocumentationProvider ofCliOption(String optVal) { - optVal = Objects.requireNonNull(optVal).toUpperCase(Locale.ROOT); + optVal = Objects.requireNonNull(optVal).toUpperCase(); return valueOf(optVal); } @@ -121,7 +120,7 @@ public List supportedAnnotationLibraries() { } public String toCliOptValue() { - return name().toLowerCase(Locale.ROOT); + return name().toLowerCase(); } } @@ -141,7 +140,7 @@ enum AnnotationLibrary { private final String description; public static AnnotationLibrary ofCliOption(String optVal) { - optVal = Objects.requireNonNull(optVal).toUpperCase(Locale.ROOT); + optVal = Objects.requireNonNull(optVal).toUpperCase(); return valueOf(optVal); } @@ -164,7 +163,7 @@ public String getDescription() { } public String toCliOptValue() { - return name().toLowerCase(Locale.ROOT); + return name().toLowerCase(); } } }