Skip to content

Commit 1ae99fc

Browse files
committed
The OpenApi field in SpringDocConfig Properties does not seem to comply with camel hump naming conventions #3193
1 parent 3de9d2d commit 1ae99fc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/properties/SpringDocConfigProperties.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public class SpringDocConfigProperties {
269269
/**
270270
* The Open api.
271271
*/
272-
private OpenAPI OpenApi;
272+
private OpenAPI openApi;
273273

274274
/**
275275
* The Enable extra schemas resolution.
@@ -312,7 +312,7 @@ public void setEnableExtraSchemas(boolean enableExtraSchemas) {
312312
* @return the open api
313313
*/
314314
public OpenAPI getOpenApi() {
315-
return OpenApi;
315+
return openApi;
316316
}
317317

318318
/**
@@ -321,7 +321,7 @@ public OpenAPI getOpenApi() {
321321
* @param openApi the open api
322322
*/
323323
public void setOpenApi(OpenAPI openApi) {
324-
this.OpenApi = openApi;
324+
this.openApi = openApi;
325325
}
326326

327327
/**

0 commit comments

Comments
 (0)