Skip to content

Commit

Permalink
Make abstract code generator public
Browse files Browse the repository at this point in the history
Without this, it isn't possible for 3rd parties to implement their own
code generator.
  • Loading branch information
melix committed Jun 26, 2023
1 parent f5c4048 commit 61ba2cf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@

import static org.openapitools.codegen.CodegenConstants.INVOKER_PACKAGE;

abstract class AbstractMicronautJavaCodegen<T extends GeneratorOptionsBuilder> extends AbstractJavaCodegen implements BeanValidationFeatures, OptionalFeatures, MicronautCodeGenerator<T> {
//CHECKSTYLE:OFF
public abstract class AbstractMicronautJavaCodegen<T extends GeneratorOptionsBuilder> extends AbstractJavaCodegen implements BeanValidationFeatures, OptionalFeatures, MicronautCodeGenerator<T> {
public static final String OPT_TITLE = "title";
public static final String OPT_TEST = "test";
public static final String OPT_TEST_JUNIT = "junit";
Expand Down

0 comments on commit 61ba2cf

Please sign in to comment.