File tree Expand file tree Collapse file tree
src/main/groovy/com/github/hauner/openapi Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,8 +59,7 @@ class MicronautProcessor implements OpenApiProcessor {
5959 def annotations = new MicronautFrameworkAnnotations ()
6060
6161 def options = convertOptions (processorOptions)
62- def cv = new ApiConverter (options)
63- cv. framework = framework
62+ def cv = new ApiConverter (options, framework)
6463 def api = cv. convert (openapi)
6564
6665 def headerWriter = new HeaderWriter ()
Original file line number Diff line number Diff line change @@ -61,8 +61,7 @@ class SpringProcessor implements OpenApiProcessor {
6161 def annotations = new SpringFrameworkAnnotations ()
6262
6363 def options = convertOptions (processorOptions)
64- def cv = new ApiConverter (options)
65- cv. framework = framework
64+ def cv = new ApiConverter (options, framework)
6665 def api = cv. convert (openapi)
6766
6867 def headerWriter = new HeaderWriter ()
You can’t perform that action at this time.
0 commit comments