Skip to content

Commit

Permalink
OpenApiLightyConfiguration should be sealed
Browse files Browse the repository at this point in the history
Seal this inner class as a suggestion from checkstyle.

JIRA: LIGHTY-290
Signed-off-by: tobias.pobocik <[email protected]>
  • Loading branch information
Tobianas committed May 6, 2024
1 parent c780096 commit 8526251
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ OpenApiService getApiDocService() {
return apiDocService;
}

private class OpenApiLightyConfiguration implements JaxRsNorthbound.Configuration {
public static final class OpenApiLightyConfiguration implements JaxRsNorthbound.Configuration {
private final String basePath;

public OpenApiLightyConfiguration(final String basePath) {
private OpenApiLightyConfiguration(final String basePath) {
this.basePath = basePath;
}

Expand Down

0 comments on commit 8526251

Please sign in to comment.