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 3dc714b commit 7d6f7f0Copy full SHA for 7d6f7f0
openapi-processor-core/src/testInt/kotlin/io/openapiprocessor/core/TestProcessor.kt
@@ -41,7 +41,9 @@ class TestProcessor:
41
42
val options = convertOptions(processorOptions)
43
apiOptions = options
44
- val identifier = JavaIdentifier(IdentifierOptions(options.identifierWordBreakFromDigitToLetter))
+ val identifier = JavaIdentifier(IdentifierOptions(
45
+ options.identifierWordBreakFromDigitToLetter,
46
+ options.identifierPrefixInvalidEnumStart))
47
val cv = ApiConverter(options, identifier, FrameworkBase())
48
val api = cv.convert(openapi)
49
0 commit comments