Skip to content

Commit 181f460

Browse files
committed
GH-117 Release 5.3.0-alpha.7
1 parent 0f33e28 commit 181f460

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ allprojects {
1616
apply(plugin = "maven-publish")
1717

1818
group = "io.javalin.community.openapi"
19-
version = "5.3.0-alpha.7-SNAPSHOT"
19+
version = "5.3.0-alpha.8-SNAPSHOT"
2020

2121
repositories {
2222
mavenCentral()

openapi-annotation-processor/src/test/compile/openapi.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class OpenApiConfiguration implements OpenApiAnnotationProcessorConfigurer {
3636
// Used by CustomTypeMappingsTest
3737
configuration.insertEmbeddedTypeProcessor({ EmbeddedTypeProcessorContext context ->
3838
if (context.type.simpleName == 'Optional' && context.type.generics.size() == 1) {
39-
context.parentContext.typeSchemaGenerator.addType(context.scheme, context.type.generics[0], context.inlineRefs, context.references, context.requiresNonNulls)
39+
context.parentContext.typeSchemaGenerator.addType(context.scheme, context.type.generics[0], context.inlineRefs, context.references, false)
4040
return true
4141
}
4242

0 commit comments

Comments
 (0)