Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielFran committed Jul 16, 2024
1 parent eb36b30 commit 2335720
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,13 @@ public GroupedOpenApi openAPIManagementGroupedOpenAPI(@Value("${spring.applicati
log.debug("Initializing JHipster OpenApi management group");
return GroupedOpenApi.builder()
.group(MANAGEMENT_GROUP_NAME)
.addOpenApiCustomizer(
openApi ->
openApi.info(
new Info()
.title(StringUtils.capitalize(appName) + " " + MANAGEMENT_TITLE_SUFFIX)
.description(MANAGEMENT_DESCRIPTION)
.version(properties.getVersion())
)
.addOpenApiCustomizer(openApi ->
openApi.info(
new Info()
.title(StringUtils.capitalize(appName) + " " + MANAGEMENT_TITLE_SUFFIX)
.description(MANAGEMENT_DESCRIPTION)
.version(properties.getVersion())
)
)
.pathsToMatch(properties.getManagementIncludePattern())
.build();
Expand Down

0 comments on commit 2335720

Please sign in to comment.