Skip to content

Commit f17474f

Browse files
committed
fix missing configuration (#350)
1 parent 825255f commit f17474f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/kotlin/io/openapiprocessor/spring/processor/SpringProcessor.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ class SpringProcessor : OpenApiProcessorTest {
4343
val annotations = SpringFrameworkAnnotations()
4444

4545
val options = convertOptions(processorOptions)
46-
val identifier = JavaIdentifier(IdentifierOptions(options.identifierWordBreakFromDigitToLetter))
46+
val identifier = JavaIdentifier(IdentifierOptions(
47+
options.identifierWordBreakFromDigitToLetter,
48+
options.identifierPrefixInvalidEnumStart))
4749
val cv = ApiConverter(options, identifier, framework)
4850
val api = cv.convert(openapi)
4951

0 commit comments

Comments
 (0)