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 825255f commit f17474fCopy full SHA for f17474f
src/main/kotlin/io/openapiprocessor/spring/processor/SpringProcessor.kt
@@ -43,7 +43,9 @@ class SpringProcessor : OpenApiProcessorTest {
43
val annotations = SpringFrameworkAnnotations()
44
45
val options = convertOptions(processorOptions)
46
- val identifier = JavaIdentifier(IdentifierOptions(options.identifierWordBreakFromDigitToLetter))
+ val identifier = JavaIdentifier(IdentifierOptions(
47
+ options.identifierWordBreakFromDigitToLetter,
48
+ options.identifierPrefixInvalidEnumStart))
49
val cv = ApiConverter(options, identifier, framework)
50
val api = cv.convert(openapi)
51
0 commit comments