We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d62f80a commit 75a1c12Copy full SHA for 75a1c12
modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/AbstractKotlinCodegen.java
@@ -466,7 +466,7 @@ public String toModelName(final String name) {
466
String modifiedName = name.replaceAll("\\.", "");
467
modifiedName = sanitizeKotlinSpecificNames(modifiedName);
468
469
- modifiedName = titleCase(modifiedName);
+ modifiedName = camelize(modifiedName);
470
471
if (modifiedName.equalsIgnoreCase("Companion")) {
472
modifiedName = "_" + modifiedName;
0 commit comments