We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da0242 commit 0eae966Copy full SHA for 0eae966
springdoc-openapi-webmvc-core/src/main/java/org/springdoc/webmvc/api/OpenApiResource.java
@@ -168,7 +168,8 @@ && isPathToMatch(operationPath)) {
168
}
169
170
171
- routerFunctionProvider.flatMap(RouterFunctionProvider::getWebMvcRouterFunctionPaths).ifPresent(routerBeans -> routerBeans.forEach(this::getRouterFunctionPaths));
+ routerFunctionProvider.ifPresent(routerFunctions -> routerFunctions.getWebMvcRouterFunctionPaths()
172
+ .ifPresent(routerBeans -> routerBeans.forEach(this::getRouterFunctionPaths)));
173
174
175
0 commit comments