File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
modules/swagger-codegen/src/main/java/io/swagger/codegen/v3/config Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -515,7 +515,7 @@ public ClientOptInput toClientOptInput() {
515
515
setVerboseFlags ();
516
516
setSystemProperties ();
517
517
518
- CodegenConfig config = CodegenConfigLoader . forName ( lang );
518
+ CodegenConfig config = loadCodegenConfig ( );
519
519
ClientOptInput input = new ClientOptInput ();
520
520
521
521
Predicate <URL > urlMatcher = null ;
@@ -669,6 +669,10 @@ public ClientOptInput toClientOptInput() {
669
669
return input ;
670
670
}
671
671
672
+ protected CodegenConfig loadCodegenConfig () {
673
+ return CodegenConfigLoader .forName (lang );
674
+ }
675
+
672
676
private ParseOptions buildParseOptions () {
673
677
ParseOptions options = new ParseOptions ();
674
678
options .setResolve (true );
You can’t perform that action at this time.
0 commit comments